52a3801208
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
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__
|