1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <cppunit/extensions/HelperMacros.h>
#include <algorithm>
class testMuon : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(testMuon);
CPPUNIT_TEST(checkAll);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
void tearDown() {}
void checkAll();
private:
};
CPPUNIT_TEST_SUITE_REGISTRATION(testMuon);
void testMuon::checkAll() {
// to be implemented...
}
|