Class documentation of Concepts

Loading...
Searching...
No Matches
traceTest.hh
Go to the documentation of this file.
1
8#ifndef testtrace_hh
9#define testtrace_hh
10
11#include "basics/testcase.hh"
12
13
14namespace test {
15
16 // ************************************************************ TraceTest **
17
22 class TraceTest : public TestCase {
23 public:
24 virtual ~TraceTest() {}
25 virtual void run();
26
28
29 void testOneQuad(uint px = 1, uint py = 1);
30 void testTwoQuadJump();
32 };
33
34} // namespace test
35
36#endif // testtrace_hh
virtual void run()
Runs the tests. Must be overwritten by the specialization.