From 30978b7fe5ee93413b2e05b54942f6550832b222 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 7 May 2007 11:37:15 +0000 Subject: Added new test files. --- tests/utility/t_utils.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/utility/t_utils.h (limited to 'tests/utility/t_utils.h') diff --git a/tests/utility/t_utils.h b/tests/utility/t_utils.h new file mode 100644 index 00000000..97154bae --- /dev/null +++ b/tests/utility/t_utils.h @@ -0,0 +1,28 @@ +#ifndef _T_UTILS_H +#define _T_UTILS_H + +#include "UnitTests.h" + +class UtilitiesTestCase : public CPPUNIT_NS::TestCase +{ + CPPUNIT_TEST_SUITE(UtilitiesTestCase); + + CPPUNIT_TEST(testConstructors); + + CPPUNIT_TEST_SUITE_END(); + +public: + UtilitiesTestCase() {} + virtual ~UtilitiesTestCase() {} + + virtual void setUp(); + virtual void tearDown(); + + void testConstructors(); + +private: + UtilitiesTestCase(const UtilitiesTestCase ©); + void operator=(const UtilitiesTestCase ©); +}; + +#endif /* _T_UTILS_H */ -- cgit v1.2.3