// // This file tests what happens when setUpWorld() throws an exception // #include #include #include class Fixture : public CxxTest::GlobalFixture { public: bool setUpWorld() { 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"); } };