xref: /haiku/src/tests/kits/app/blooper/IndexOfTest.h (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 //------------------------------------------------------------------------------
2 //	IndexOfTest.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef INDEXOFTEST_H
7 #define INDEXOFTEST_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 
22 class TIndexOfTest : public TestCase
23 {
24 	public:
25 		TIndexOfTest() {;}
26 		TIndexOfTest(std::string name) : TestCase(name) {;}
27 
28 		void IndexOfTest1();
29 		void IndexOfTest2();
30 		void IndexOfTest3();
31 		void IndexOfTest4();
32 		void IndexOfTest5();
33 		void IndexOfTest6();
34 
35 		static TestSuite* Suite();
36 };
37 
38 #endif	//INDEXOFTEST_H
39 
40 /*
41  * $Log $
42  *
43  * $Id  $
44  *
45  */
46 
47