1//------------------------------------------------------------------------------
2//	BApplicationTester.h
3//
4//------------------------------------------------------------------------------
5
6#ifndef B_APPLICATION_TESTER_H
7#define B_APPLICATION_TESTER_H
8
9// Standard Includes -----------------------------------------------------------
10
11// System Includes -------------------------------------------------------------
12
13// Project Includes ------------------------------------------------------------
14
15// Local Includes --------------------------------------------------------------
16#include "../common.h"
17
18// Local Defines ---------------------------------------------------------------
19
20// Globals ---------------------------------------------------------------------
21
22class TBApplicationTester : public TestCase
23{
24	public:
25		TBApplicationTester() {;}
26		TBApplicationTester(std::string name) : TestCase(name) {;}
27
28		void BApplication1();
29		void BApplication2();
30		void BApplication3();
31		void BApplication4();
32		void BApplication5();
33
34		static Test* Suite();
35};
36
37#endif	// B_APPLICATION_TESTER_H
38
39