1 #include "UnitTest++/UnitTestPP.h" 2 3 // We're really testing if it's possible to use the same suite in two files 4 // to compile and link successfuly (TestTestSuite.cpp has suite with the same name) 5 // Note: we are outside of the anonymous namespace 6 SUITE(SameTestSuite) 7 { 8 TEST(DummyTest2) 9 { 10 } 11 } 12 13