Removed autotools cruft.
[libsex.git] / tests / UsageExamples.hxx
blob89129a9a0d6959e828c4fd1bbb84706a22430aa2
1 #ifndef TESTS_USAGEEXAMPLES_HXX
2 #define TESTS_USAGEEXAMPLES_HXX
4 #include <cppunit/extensions/HelperMacros.h>
6 namespace tests
8 class UsageExamples;
11 class tests::UsageExamples : public CppUnit::TestFixture
13 CPPUNIT_TEST_SUITE(UsageExamples);
14 CPPUNIT_TEST(testSimpleConstruction);
15 CPPUNIT_TEST(testSimpleThrowing);
16 CPPUNIT_TEST(testThrowing);
17 CPPUNIT_TEST(testChaining);
18 CPPUNIT_TEST_SUITE_END();
20 public:
21 void testSimpleConstruction();
22 void testSimpleThrowing();
23 void testThrowing();
24 void testChaining();
27 #endif