Class documentation of Concepts

Loading...
Searching...
No Matches
spaceTest.hh
Go to the documentation of this file.
1
7#ifndef spaceTest_hh
8#define spaceTest_hh
9
10#include "basics/testcase.hh"
11
12using concepts::Real;
13
14namespace test {
15
19 class SpaceTest3D : public TestCase {
20 public:
21 SpaceTest3D() : elmIdx_(0) {}
22 virtual ~SpaceTest3D() {}
23 virtual void run();
24
26
27
28 void testSpace();
30 private:
31 void r_(const uint, const uint);
32 void c_(const uint, const Real);
33 std::list<std::pair<uint, uint> > rowIdx_[16];
34 std::list<std::pair<uint, Real> > colAndEntry_[16];
35 uint elmIdx_;
36 };
37
38} // namespace test
39
40#endif // spaceTest_hh
virtual void run()
Runs the tests. Must be overwritten by the specialization.
void testSpace()
Tests space (all T matrices of all elements)
double Real
Definition typedefs.hh:39