FactDev  0.1
generation.h
1 #ifndef GENERATION_H
2 #define GENERATION_H
3 #include "QTestRunner/testrunner.h"
4 
5 
6 class Generation : public QObject
7 {
8  Q_OBJECT
9 
10 public:
11  Generation();
12 
13 private slots:
14  void testTemplate();
15  void testFileTemplate();
16  void GenerationSimpleBilling();
17  void GenerationSimpleTexBillingWithModel();
18  void GenerationSimplePdfBillingWithModel();
19 
20  void GenerationBillingPdf();
21 };
22 
23 DECLARE_TEST(Generation)
24 
25 #endif // GENERATION_H
Definition: generation.h:6