2006-03-29 10:25:48 +00:00
|
|
|
#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] ) {}
|
2008-05-07 15:09:10 +00:00
|
|
|
virtual ~CreatedTest() { delete[] _buffer; }
|
2009-01-01 15:06:43 +00:00
|
|
|
|
2006-03-29 10:25:48 +00:00
|
|
|
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
|