NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
CFDTest.h
1 
2 
3 #ifndef CFDTEST_H
4 #define CFDTEST_H
5 
6 #include <iostream>
7 #include <stdint.h>
8 #include <cppunit/extensions/HelperMacros.h>
9 
10 #ifndef TEST
11 #define TEST
12 #define private public
13 #endif
14 
15 #include "Trace.hpp"
16 #include "CFD.hpp"
17 
18 #include "TraceDefs.h"
19 
20 #ifndef USING_TRANAL_NAMESPACE
21 using namespace TrAnal;
22 #define USING_TRANAL_NAMESPACE
23 #endif
24 
25 
26 class CFDTest : public CppUnit::TestFixture
27 {
28  private:
29  TraceS null_tr;
30  TraceS simple_tr;
31  TraceS step_tr;
32  TraceS line_tr;
33 
34  public:
35  // Define the test suite
36  CPPUNIT_TEST_SUITE( CFDTest );
37 
38  CPPUNIT_TEST ( testValue );
39 
40  CPPUNIT_TEST_SUITE_END();
41 
42  public:
43  // Begin the standard methods
44  void setUp();
45  void tearDown();
46 
47  // Begin tests
48  void testValue();
49 };
50 
51 #endif
Definition: AlgoIterator.hpp:12
Definition: CFDTest.h:26