FactDev  0.1
statisticmodeltest.h
1 #ifndef STATISTICMODELTEST_H
2 #define STATISTICMODELTEST_H
3 #include "QTestRunner/testrunner.h"
4 #include "models/statistics.h"
5 
6 
7 class StatisticModelTest : public QObject
8 {
9  Q_OBJECT
10 public:
12 
13 private slots:
14  void getTurnoverBeetweenDates();
15  void getGlobalTurnover();
16 
17 private:
18  Statistics s1;
19  Statistics s2;
20 };
21 
22 DECLARE_TEST(StatisticModelTest)
23 
24 #endif // STATISTICMODELTEST_H
Definition: statisticmodeltest.h:7
Definition: statistics.h:15