blob: 788a1c11ff75903d38cb79b543d4b2af147f33fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef _T_BALANCE_H
#define _T_BALANCE_H
#include "UnitTests.h"
class BalanceTestCase : public CPPUNIT_NS::TestCase
{
CPPUNIT_TEST_SUITE(BalanceTestCase);
CPPUNIT_TEST(testConstructors);
CPPUNIT_TEST_SUITE_END();
public:
//ledger::session_t session;
BalanceTestCase() {}
virtual ~BalanceTestCase() {}
virtual void setUp();
virtual void tearDown();
void testConstructors();
private:
BalanceTestCase(const BalanceTestCase ©);
void operator=(const BalanceTestCase ©);
};
#endif // _T_BALANCE_H
|