blob: 9ec2ae9deb7c4949581b35aa43fc230e9d600bbe (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/***************************************************************************
mymoneyforecasttest.h
-------------------
copyright : (C) 2007 by Alvaro Soliverez
email : asoliverez@gmail.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef __MYMONEYFORECASTTEST_H__
#define __MYMONEYFORECASTTEST_H__
#include <cppunit/extensions/HelperMacros.h>
#include "../mymoney/mymoneyfile.h"
#include "../mymoney/storage/mymoneyseqaccessmgr.h"
#define private public
#include "mymoneyforecast.h"
#undef private
class MyMoneyForecastTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE ( MyMoneyForecastTest );
CPPUNIT_TEST ( testEmptyConstructor );
CPPUNIT_TEST ( testDoForecast );
CPPUNIT_TEST ( testDoForecastInit );
CPPUNIT_TEST ( testGetForecastAccountList );
CPPUNIT_TEST ( testCalculateAccountTrend );
CPPUNIT_TEST ( testGetForecastBalance );
CPPUNIT_TEST ( testIsForecastAccount );
CPPUNIT_TEST ( testDoFutureScheduledForecast );
CPPUNIT_TEST ( testDaysToMinimumBalance );
CPPUNIT_TEST ( testDaysToZeroBalance );
CPPUNIT_TEST ( testScheduleForecast );
CPPUNIT_TEST ( testSkipOpeningDate );
CPPUNIT_TEST ( testAccountMinimumBalanceDateList );
CPPUNIT_TEST ( testAccountMaximumBalanceDateList );
CPPUNIT_TEST ( testAccountAverageBalance );
CPPUNIT_TEST ( testBeginForecastDate );
CPPUNIT_TEST ( testHistoryDays );
CPPUNIT_TEST ( testCreateBudget );
CPPUNIT_TEST ( testLinearRegression );
CPPUNIT_TEST_SUITE_END();
public:
MyMoneyForecastTest();
void setUp ();
void tearDown ();
void testEmptyConstructor();
void testDoForecast();
void testDoForecastInit();
void testGetForecastAccountList();
void testCalculateAccountTrend();
void testGetForecastBalance();
void testIsForecastAccount();
void testDoFutureScheduledForecast();
void testDaysToMinimumBalance();
void testDaysToZeroBalance();
void testScheduleForecast();
void testSkipOpeningDate();
void testAccountMinimumBalanceDateList();
void testAccountMaximumBalanceDateList();
void testAccountAverageBalance();
void testBeginForecastDate();
void testHistoryDays();
void testCreateBudget();
void testLinearRegression();
protected:
MyMoneyForecast *m;
private:
MyMoneyAccount *account;
MyMoneySeqAccessMgr* storage;
MyMoneyFile* file;
MyMoneyMoney moT1;
MyMoneyMoney moT2;
MyMoneyMoney moT3;
MyMoneyMoney moT4;
MyMoneyMoney moT5;
};
#endif
|