2008-10-13 08:42:40 +02:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
|
|
|
|
class TestFixture
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
static std::ostringstream errmsg;
|
|
|
|
static unsigned int countTests;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string classname;
|
|
|
|
|
|
|
|
virtual void run()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
bool runTest(const char testname[]);
|
|
|
|
void assertFail(const char *filename, int linenr);
|
|
|
|
|
|
|
|
public:
|
|
|
|
TestFixture(const std::string &_name);
|
2008-10-16 19:22:26 +02:00
|
|
|
virtual ~TestFixture() { }
|
2008-10-13 08:42:40 +02:00
|
|
|
|
|
|
|
static void printTests();
|
2008-10-26 12:11:26 +01:00
|
|
|
static void runTests(const char cmd[]);
|
2008-10-13 08:42:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define TEST_CASE( NAME ) if ( runTest(#NAME) ) NAME ();
|
|
|
|
#define ASSERT_EQUALS( EXPECTED , ACTUAL ) if (EXPECTED!=ACTUAL) assertFail(__FILE__, __LINE__);
|
2008-10-16 19:22:26 +02:00
|
|
|
#define REGISTER_TEST( CLASSNAME ) namespace { CLASSNAME instance; }
|
2008-10-13 08:42:40 +02:00
|
|
|
|