34 lines
688 B
C
34 lines
688 B
C
|
// FindDirectoryTest.h
|
||
|
|
||
|
#ifndef __sk_find_directory_test_h__
|
||
|
#define __sk_find_directory_test_h__
|
||
|
|
||
|
#include <cppunit/TestCaller.h>
|
||
|
#include <cppunit/TestSuite.h>
|
||
|
|
||
|
#include <StorageDefs.h>
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
#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__
|