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