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