AppCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TestCashPrint.h
Go to the documentation of this file.
1 #ifndef TESTCASHPRINT_H
2 #define TESTCASHPRINT_H
3 
4 #include <cppunit/extensions/HelperMacros.h>
5 #include "tests/TestVehicle.h"
6 
7 namespace EM
8 {
9  namespace Tests
10  {
11  class TestCashPrint : public TestVehicle
12  {
13  CPPUNIT_TEST_SUITE ( TestCashPrint );
14  CPPUNIT_TEST ( CheckCashPrint );
15  CPPUNIT_TEST_SUITE_END();
16 
17  public:
18  TestCashPrint();
19  virtual ~TestCashPrint();
20 
21  void setUp();
22  void CheckCashPrint();
23  };
24  }
25 }
26 
27 #endif // TESTCASHPRINT_H
Definition: TestVehicle.h:11
void setUp()
Definition: TestCashPrint.cpp:45
TestCashPrint()
Definition: TestCashPrint.cpp:34
void CheckCashPrint()
Definition: TestCashPrint.cpp:56
SYSTEM INCLUDES.
Definition: CardFacadeManagerXML.h:6
virtual ~TestCashPrint()
Definition: TestCashPrint.cpp:40
Definition: TestCashPrint.h:11