JSON_FAIL.h 365 B

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