1218887Sdim//------------------------------------------------------------------------------
2218887Sdim//	LooperSizeTest.h
3218887Sdim//
4218887Sdim//------------------------------------------------------------------------------
5218887Sdim
6218887Sdim#ifndef LOOPERSIZETEST_H
7218887Sdim#define LOOPERSIZETEST_H
8218887Sdim
9218887Sdim// Standard Includes -----------------------------------------------------------
10218887Sdim
11218887Sdim// System Includes -------------------------------------------------------------
12218887Sdim
13218887Sdim// Project Includes ------------------------------------------------------------
14218887Sdim
15218887Sdim// Local Includes --------------------------------------------------------------
16218887Sdim#include "../common.h"
17218887Sdim
18218887Sdim// Local Defines ---------------------------------------------------------------
19218887Sdim
20218887Sdim// Globals ---------------------------------------------------------------------
21218887Sdim
22218887Sdimclass TLooperSizeTest : public TestCase
23218887Sdim{
24218887Sdim	public:
25226633Sdim		TLooperSizeTest() {;}
26218887Sdim		TLooperSizeTest(std::string name) : TestCase(name) {;}
27218887Sdim
28218887Sdim		void LooperSizeTest();
29
30		static TestSuite* Suite();
31};
32
33#endif	//LOOPERSIZETEST_H
34
35/*
36 * $Log $
37 *
38 * $Id  $
39 *
40 */
41
42