JSON_ASSERT.h 396 B

123456789101112131415
  1. #ifndef JSON_TESTSUITE_JSON_DEBUG__JSON_ASSERT_H
  2. #define JSON_TESTSUITE_JSON_DEBUG__JSON_ASSERT_H
  3. #include "../BaseTest.h"
  4. class testJSONDebug_JSON_ASSERT : public BaseTest {
  5. public:
  6. testJSONDebug_JSON_ASSERT(const std::string & name) : BaseTest(name){}
  7. virtual void setUp(const std::string & methodName);
  8. virtual void tearDown(void);
  9. void testPass(void);
  10. void testFail(void);
  11. };
  12. #endif