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

25 lines
398 B
C++

#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" );
// }
//void test_Something_else()
//{
// TS_WARN( "Something else" );
//}
};