StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjTreeEntryCoordinatorTest.hh
1 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
2 #ifndef STJTREEENTRYCOORDINATORTEST_HH
3 #define STJTREEENTRYCOORDINATORTEST_HH
4 
5 #include <cppunit/extensions/HelperMacros.h>
6 
7 class StjTreeEntryCoordinatorTest : public CPPUNIT_NS::TestFixture
8 {
9  CPPUNIT_TEST_SUITE( StjTreeEntryCoordinatorTest );
10  CPPUNIT_TEST( testEmpty );
11  CPPUNIT_TEST( testOne );
12  CPPUNIT_TEST( testTwo );
13  CPPUNIT_TEST( testTree );
14  CPPUNIT_TEST_SUITE_END();
15 
16 public:
17  void setUp();
18  void tearDown();
19 
20  void testEmpty();
21  void testOne();
22  void testTwo();
23  void testTree();
24 
25 private:
26 
27 };
28 
29 #endif // STJTREEENTRYCOORDINATORTEST_HH