summaryrefslogtreecommitdiff
path: root/test/unit/t_times.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-19 13:33:47 -0400
committerJohn Wiegley <johnw@newartisans.com>2011-02-04 03:43:33 -0500
commit2a2c3c1ceca27bc1e0ce6408459ddbf8dd980fae (patch)
tree8cf5fd66d4995b72e4636a7df40febee5e80817c /test/unit/t_times.h
parentc9730d781c33e5cbece892f78008e379cfabe2e2 (diff)
downloadfork-ledger-2a2c3c1ceca27bc1e0ce6408459ddbf8dd980fae.tar.gz
fork-ledger-2a2c3c1ceca27bc1e0ce6408459ddbf8dd980fae.tar.bz2
fork-ledger-2a2c3c1ceca27bc1e0ce6408459ddbf8dd980fae.zip
Use Boost.Test instead of CppUnit
Diffstat (limited to 'test/unit/t_times.h')
-rw-r--r--test/unit/t_times.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/unit/t_times.h b/test/unit/t_times.h
deleted file mode 100644
index 5bbadf21..00000000
--- a/test/unit/t_times.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef _T_TIMES_H
-#define _T_TIMES_H
-
-#include "UnitTests.h"
-
-class DateTimeTestCase : public CPPUNIT_NS::TestCase
-{
- CPPUNIT_TEST_SUITE(DateTimeTestCase);
-
- CPPUNIT_TEST(testConstructors);
-
- CPPUNIT_TEST_SUITE_END();
-
-public:
- DateTimeTestCase() {}
- virtual ~DateTimeTestCase() {}
-
- virtual void setUp();
- virtual void tearDown();
-
- void testConstructors();
-
-private:
- DateTimeTestCase(const DateTimeTestCase &copy);
- void operator=(const DateTimeTestCase &copy);
-};
-
-#endif /* _T_TIMES_H */