mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
25 lines
398 B
C++
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" );
|
|
//}
|
|
};
|