Initial commit, version 0.1.0.
[libfsafe.git] / tests / Example.hxx
blobaa95adb2f3054a7230e3f2a85ac6b10c8318eaa6
1 #ifndef TESTS_EXAMPLE_HXX
2 #define TESTS_EXAMPLE_HXX
4 #include <cppunit/extensions/HelperMacros.h>
6 namespace tests
8 class Example;
11 class tests::Example : public CppUnit::TestFixture
13 CPPUNIT_TEST_SUITE(tests::Example);
14 CPPUNIT_TEST(main);
15 CPPUNIT_TEST_SUITE_END();
17 public:
18 void main();
20 protected:
21 void initialize();
22 void cleanup();
23 void run();
24 int calculate(int* ptr);
27 #endif