diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-25 01:10:05 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-25 01:10:05 -0400 |
commit | 79a79766000a6440f651af50cfac3646171e8f0a (patch) | |
tree | 1b5a9a419ffd65770fd36ec55f9c0a608e5b1045 /test/unit/t_valexpr.h | |
parent | 1ae1033090faf566f8577cc63ac10a2d4e0e1f7f (diff) | |
download | fork-ledger-79a79766000a6440f651af50cfac3646171e8f0a.tar.gz fork-ledger-79a79766000a6440f651af50cfac3646171e8f0a.tar.bz2 fork-ledger-79a79766000a6440f651af50cfac3646171e8f0a.zip |
Reorganized Ledger so that it builds as 7 separate libraries. This is mainly
to prove to myself that it has proper decoupling between prior code areas.
Diffstat (limited to 'test/unit/t_valexpr.h')
-rw-r--r-- | test/unit/t_valexpr.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/test/unit/t_valexpr.h b/test/unit/t_valexpr.h deleted file mode 100644 index 3cac4ed6..00000000 --- a/test/unit/t_valexpr.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef _T_VALEXPR_H -#define _T_VALEXPR_H - -#include "UnitTests.h" - -class ValueExprTestCase : public CPPUNIT_NS::TestCase -{ - CPPUNIT_TEST_SUITE(ValueExprTestCase); - - CPPUNIT_TEST(testConstructors); - - CPPUNIT_TEST_SUITE_END(); - -public: - ledger::session_t session; - - ValueExprTestCase() {} - virtual ~ValueExprTestCase() {} - - virtual void setUp(); - virtual void tearDown(); - - void testConstructors(); - -private: - ValueExprTestCase(const ValueExprTestCase ©); - void operator=(const ValueExprTestCase ©); -}; - -#endif // _T_VALEXPR_H |