// FindDirectoryTest.h #ifndef __sk_find_directory_test_h__ #define __sk_find_directory_test_h__ #include #include #include #include #include "BasicTest.h" class FindDirectoryTest : public BasicTest { public: static CppUnit::Test* Suite(); // This function called before *each* test added in Suite() void setUp(); // This function called after *each* test added in Suite() void tearDown(); //------------------------------------------------------------ // Test functions //------------------------------------------------------------ void Test(); }; #endif // __sk_find_directory_test_h__