summaryrefslogtreecommitdiff
path: root/test/numerics/t_valexpr.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-07-28 03:42:18 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-07-28 03:42:18 -0400
commit63039ade9209bced70b3e4dbb673ad90286d310a (patch)
treece6b2a25973a21a6a93bf5ab15ba3e1a01a51c7c /test/numerics/t_valexpr.h
parente14d7b6e543850bae6c46f01a80b11c41ea383cf (diff)
downloadfork-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.h30
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 &copy);
+ void operator=(const ValueExprTestCase &copy);
+};
+
+#endif // _T_VALEXPR_H