xref: /haiku/src/tests/kits/storage/FindDirectoryTest.h (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 // FindDirectoryTest.h
2 
3 #ifndef __sk_find_directory_test_h__
4 #define __sk_find_directory_test_h__
5 
6 #include <cppunit/TestCaller.h>
7 #include <cppunit/TestSuite.h>
8 
9 #include <StorageDefs.h>
10 #include <SupportDefs.h>
11 
12 #include "BasicTest.h"
13 
14 class FindDirectoryTest : public BasicTest
15 {
16 public:
17 	static CppUnit::Test* Suite();
18 
19 	// This function called before *each* test added in Suite()
20 	void setUp();
21 
22 	// This function called after *each* test added in Suite()
23 	void tearDown();
24 
25 	//------------------------------------------------------------
26 	// Test functions
27 	//------------------------------------------------------------
28 	void Test();
29 };
30 
31 
32 
33 #endif	// __sk_find_directory_test_h__
34