#ifndef _beos_test_case_h_
#define _beos_test_case_h_
#include <BeBuild.h>
#include <cppunit/TestCase.h>
#include <StorageDefs.h>
#include <SupportDefs.h>
class CPPUNIT_API BTestCase : public CppUnit::TestCase {
public:
BTestCase(std::string Name = "");
virtual void NextSubTest();
virtual void NextSubTestBlock();
settings are honored.
*/
virtual void Outputf(const char *str, ...);
void SaveCWD();
virtual void tearDown();
void RestoreCWD(const char *alternate = NULL);
protected:
bool fValidCWD;
char fCurrentWorkingDir[B_PATH_NAME_LENGTH+1];
int32 fSubTestNum;
};
#endif