Class documentation of Concepts

Loading...
Searching...
No Matches
edgeInfoTest.hh
Go to the documentation of this file.
1
7#ifndef edgeInfoTest_hh
8#define edgeInfoTest_hh
9
10#include "basics/testcase.hh"
11
12namespace linDG2D {
13 class EdgeInfo;
14}
15
16namespace test {
17
21 class DGEdgeInfoTest : public TestCase {
22 public:
23 virtual ~DGEdgeInfoTest() {}
24 virtual void run();
25
27
28 void testLength(linDG2D::EdgeInfo* ei);
29 void testNormal(linDG2D::EdgeInfo* ei);
30 void testShapeFct(linDG2D::EdgeInfo* ei);
31 void testVertices(linDG2D::EdgeInfo* ei);
32 void testMeanHeight(linDG2D::EdgeInfo* ei);
34 };
35
36} // namespace test
37
38#endif // edgeInfoTest_hh
virtual void run()
Runs the tests. Must be overwritten by the specialization.