mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
11 lines
174 B
C++
11 lines
174 B
C++
#include <cxxtest/TestSuite.h>
|
|
|
|
class ThrowNoStd : public CxxTest::TestSuite
|
|
{
|
|
public:
|
|
void testThrowNoStd()
|
|
{
|
|
TS_ASSERT_THROWS( { throw 1; }, int);
|
|
}
|
|
};
|