1//------------------------------------------------------------------------------
2//	CountTester.h
3//
4//------------------------------------------------------------------------------
5
6#ifndef COUNT_TESTER_H
7#define COUNT_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 CountTester : public TestCase
23{
24	public:
25		CountTester() {;}
26		CountTester(std::string name) : TestCase(name) {;}
27
28		void LocalCount1();
29		void LocalCount2();
30		void LocalCount3();
31		void LocalCount4();
32		void LocalCount5();
33		void LocalCount6();
34		void SystemCount1();
35		void SystemCount2();
36		void SystemCount3();
37
38		static Test* Suite();
39};
40
41#endif	// COUNT_TESTER_H
42
43