Files
FreeJ/tests/cxxtest/sample/CreatedTest.h
Luca Bigliardi 313fc403e6 Test framework.
Add CxxTest files.
Compile and run tests with "make check" from automake.
A dumb test is provided, serious tests are coming.
2009-06-21 14:51:45 +01:00

32 lines
739 B
C++

#ifndef __CREATEDTEST_H
#define __CREATEDTEST_H
#include <cxxtest/TestSuite.h>
#include <string.h>
#include <memory.h>
//
// This test suite shows what to do when your test case
// class cannot be instantiated statically.
// As an example, this test suite requires a non-default constructor.
//
class CreatedTest : public CxxTest::TestSuite
{
char *_buffer;
public:
CreatedTest( unsigned size ) : _buffer( new char[size] ) {}
virtual ~CreatedTest() { delete [] _buffer; }
static CreatedTest *createSuite() { return new CreatedTest( 16 ); }
static void destroySuite( CreatedTest *suite ) { delete suite; }
void test_nothing()
{
TS_FAIL( "Nothing to test" );
}
};
#endif // __CREATEDTEST_H