xlnt/third-party/cxxtest/test/Comments2.h

22 lines
327 B
C
Raw Normal View History

#include <cxxtest/TestSuite.h>
//
// This is a test of commenting out tests in CxxTest
//
class Comments : public CxxTest::TestSuite
{
public:
void test_Something()
{
TS_WARN("Something");
}
/*
void test_Something_else()
{
TS_WARN( "Something else" );
}
*/
};