mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
17 lines
325 B
C
17 lines
325 B
C
|
#include <cxxtest/TestSuite.h>
|
||
|
|
||
|
//
|
||
|
// This tests CxxTest's handling of "__int64"
|
||
|
//
|
||
|
|
||
|
class Int64 : public CxxTest::TestSuite
|
||
|
{
|
||
|
public:
|
||
|
void testInt64()
|
||
|
{
|
||
|
TS_ASSERT_EQUALS((__int64)1, (__int64)2);
|
||
|
TS_ASSERT_DIFFERS((__int64)3, (__int64)3);
|
||
|
TS_ASSERT_LESS_THAN((__int64)5, (__int64)4);
|
||
|
}
|
||
|
};
|