1//------------------------------------------------------------------------------
2//	RemoveHandlerTest.h
3//
4//------------------------------------------------------------------------------
5
6#ifndef REMOVEHANDLERTEST_H
7#define REMOVEHANDLERTEST_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 TRemoveHandlerTest : public TestCase
23{
24	public:
25		TRemoveHandlerTest() {;}
26		TRemoveHandlerTest(std::string name) : TestCase(name) {;}
27
28		void RemoveHandler1();
29		void RemoveHandler2();
30		void RemoveHandler3();
31		void RemoveHandler4();
32		void RemoveHandler5();
33
34		static Test* Suite();
35};
36
37#endif	//REMOVEHANDLERTEST_H
38
39/*
40 * $Log $
41 *
42 * $Id  $
43 *
44 */
45
46