inital program check in

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@612 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2002-08-06 20:09:55 +00:00
parent 157a1c84d2
commit c523ad7c3e

View File

@ -0,0 +1,27 @@
// BMPTranslatorTest.h
#ifndef BMP_TRANSLATOR_TEST_H
#define BMP_TRANSLATOR_TEST_H
#include <TestCase.h>
#include <TestShell.h>
class CppUnit::Test;
class BMPTranslatorTest : public BTestCase {
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 DummyTest();
};
#endif // BMP_TRANSLATOR_TEST_H