1//------------------------------------------------------------------------------
2//	UnlockLooperTest.h
3//
4//------------------------------------------------------------------------------
5
6#ifndef UNLOCKLOOPERTEST_H
7#define UNLOCKLOOPERTEST_H
8
9// Standard Includes -----------------------------------------------------------
10
11// System Includes -------------------------------------------------------------
12#include <Handler.h>
13
14// Project Includes ------------------------------------------------------------
15
16// Local Includes --------------------------------------------------------------
17#include "../common.h"
18
19// Local Defines ---------------------------------------------------------------
20
21// Globals ---------------------------------------------------------------------
22
23class TUnlockLooperTest : public TestCase
24{
25	public:
26		TUnlockLooperTest() {;}
27		TUnlockLooperTest(std::string name) : TestCase(name) {;}
28
29		void UnlockLooper1();
30		void UnlockLooper2();
31		void UnlockLooper3();
32
33		static Test* Suite();
34};
35
36#endif	//UNLOCKLOOPERTEST_H
37
38/*
39 * $Log $
40 *
41 * $Id  $
42 *
43 */
44
45