mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
16 lines
232 B
C++
16 lines
232 B
C++
#include <cxxtest/TestSuite.h>
|
|
|
|
//
|
|
// This is a test for the --include option
|
|
//
|
|
|
|
class IncludesTest : public CxxTest::TestSuite
|
|
{
|
|
public:
|
|
void testTraits()
|
|
{
|
|
TS_WARN((void *)0);
|
|
TS_WARN((long *)0);
|
|
}
|
|
};
|