libMesh
point_test.C
Go to the documentation of this file.
1 #include <libmesh/point.h>
2 
3 #include "point_test.h"
4 
5 using namespace libMesh;
6 
7 class PointTest : public PointTestBase<Point> {
8 public:
10  PointTestBase<Point>() {
11  this->libmesh_suite_name = "PointTest";
12  }
13 
14  CPPUNIT_TEST_SUITE( PointTest );
15 
16  POINTTEST
17 
18  CPPUNIT_TEST_SUITE_END();
19 };
20 
The libMesh namespace provides an interface to certain functionality in the library.
CPPUNIT_TEST_SUITE_REGISTRATION(PointTest)
PointTest()
Definition: point_test.C:9
A Point defines a location in LIBMESH_DIM dimensional Real space.
Definition: point.h:39