mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
16 lines
248 B
C
16 lines
248 B
C
|
#include <cxxtest/TestSuite.h>
|
||
|
|
||
|
//
|
||
|
// This tests CxxTest's `--have-std' option
|
||
|
//
|
||
|
#include "Something.h"
|
||
|
|
||
|
class HaveStd : public CxxTest::TestSuite
|
||
|
{
|
||
|
public:
|
||
|
void testHaveStd()
|
||
|
{
|
||
|
TS_ASSERT_EQUALS(something(), "Something");
|
||
|
}
|
||
|
};
|