https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 0d8e0cb0d00933663e03db3daee3172ca79d5d23 authored by Dmitry Yu. Naumov on 16 March 2021, 07:02:19 UTC
Merge branch 'ReplaceBoostAny' into 'master'
Tip revision: 0d8e0cb
TestPoint3dWithID.cpp
/**
 * \file
 * \date 2015-05-21
 *
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

#include <ctime>

#include "gtest/gtest.h"

#include "MathLib/Point3dWithID.h"

using namespace MathLib;

TEST(MathLib, Point3dWithID)
{
    Point3dWithID p0(0,0,0,1);
    const Point3dWithID& p1(p0); // copy constructor
    Point3dWithID p2(p0, 2); // constructor for resetting the id

    EXPECT_EQ(p0.getID(), p1.getID());
    EXPECT_NE(p0.getID(), p2.getID());
}

back to top