Files
cpp-thirdparty/noarch/lib/py/cxxtest/test/GfSetUpThrows.h
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

29 lines
526 B
C++

//
// This file tests what happens when GlobalFixture::setUp() throws
//
#include <cxxtest/TestSuite.h>
#include <cxxtest/GlobalFixture.h>
#include <stdio.h>
class Fixture : public CxxTest::GlobalFixture
{
public:
bool setUp() { throw this; }
};
//
// We can rely on this file being included exactly once
// and declare this global variable in the header file.
//
static Fixture fixture;
class Suite : public CxxTest::TestSuite
{
public:
void testOne()
{
TS_FAIL("Shouldn't get here at all");
}
};