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/numerics/t_balance.cc | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/numerics/t_balance.cc (limited to 'tests/numerics/t_balance.cc') diff --git a/tests/numerics/t_balance.cc b/tests/numerics/t_balance.cc new file mode 100644 index 00000000..ca759836 --- /dev/null +++ b/tests/numerics/t_balance.cc @@ -0,0 +1,25 @@ +#include "t_balance.h" + +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(BalanceTestCase, "numerics"); + +void BalanceTestCase::setUp() +{ + ledger::set_session_context(&session); + + // Cause the display precision for dollars to be initialized to 2. + amount_t x1("$1.00"); + assertTrue(x1); + + amount_t::stream_fullstrings = true; // make reports from UnitTests accurate +} + +void BalanceTestCase::tearDown() +{ + amount_t::stream_fullstrings = false; + + ledger::set_session_context(); +} + +void BalanceTestCase::testConstructors() +{ +} -- cgit v1.2.3