diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-28 03:42:18 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-28 03:42:18 -0400 |
commit | 63039ade9209bced70b3e4dbb673ad90286d310a (patch) | |
tree | ce6b2a25973a21a6a93bf5ab15ba3e1a01a51c7c /test/numerics/t_valexpr.h | |
parent | e14d7b6e543850bae6c46f01a80b11c41ea383cf (diff) | |
download | fork-ledger-63039ade9209bced70b3e4dbb673ad90286d310a.tar.gz fork-ledger-63039ade9209bced70b3e4dbb673ad90286d310a.tar.bz2 fork-ledger-63039ade9209bced70b3e4dbb673ad90286d310a.zip |
Added the skeleton for the upcoming value_expr unit tests.
Diffstat (limited to 'test/numerics/t_valexpr.h')
-rw-r--r-- | test/numerics/t_valexpr.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/numerics/t_valexpr.h b/test/numerics/t_valexpr.h new file mode 100644 index 00000000..3cac4ed6 --- /dev/null +++ b/test/numerics/t_valexpr.h @@ -0,0 +1,30 @@ +#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 |