1 #ifndef ASSERTIONTRAITSTEST_H
2 #define ASSERTIONTRAITSTEST_H
3 
4 #include <cppunit/extensions/HelperMacros.h>
5 
6 class assertion_traitsTest : public CPPUNIT_NS::TestFixture
7 {
8   CPPUNIT_TEST_SUITE( assertion_traitsTest );
9   CPPUNIT_TEST( test_toString );
10   CPPUNIT_TEST_SUITE_END();
11 
12 public:
13 
14   assertion_traitsTest();
15 
16   void test_toString();
17 
18 
19 private:
20   assertion_traitsTest( const assertion_traitsTest &copy );
21   void operator =( const assertion_traitsTest &copy );
22 
23 private:
24 };
25 
26 #endif
27 
28