Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-10-04 22:54:38

0001 #include <cppunit/extensions/HelperMacros.h>
0002 #include <algorithm>
0003 class testMuon : public CppUnit::TestFixture {
0004   CPPUNIT_TEST_SUITE(testMuon);
0005   CPPUNIT_TEST(checkAll);
0006   CPPUNIT_TEST_SUITE_END();
0007 
0008 public:
0009   void setUp() {}
0010   void tearDown() {}
0011   void checkAll();
0012 
0013 private:
0014 };
0015 
0016 CPPUNIT_TEST_SUITE_REGISTRATION(testMuon);
0017 
0018 void testMuon::checkAll() {
0019   // to be implemented...

0020 }