Class documentation of Concepts

Loading...
Searching...
No Matches
edgeTest.hh
Go to the documentation of this file.
1
7#ifndef testedge_hh
8#define testedge_hh
9
10#include "basics/testcase.hh"
11#include "basics/typedefs.hh"
12#include "toolbox/array.hh"
13
14namespace concepts {
15 // forward declarations
16 template<class F>
17 class TMatrix;
18}
19
20namespace test {
21
22 using concepts::Real;
23
24 // **************************************************** EdgeTest **
25
29 class EdgeTest : public TestCase {
30 public:
31 virtual ~EdgeTest() {}
32 virtual void run();
33
35
36
40 void testCopy();
44 private:
45 bool testDof_(const uint dim, const concepts::TMatrix<Real> T,
46 const concepts::Array<uint> gdof,
47 const concepts::Array<int> dir);
48 };
49
50} // namespace test
51
52#endif // testedge_hh
void testTwoQuads()
void testCopy()
Tests copy constructor.
virtual void run()
Runs the tests. Must be overwritten by the specialization.
void testBilinearForm()
Test bilinearforms on the edge.
double Real
Definition typedefs.hh:39