isValidString.h 452 B

1234567891011121314151617
  1. #ifndef JSON_TESTSUITE_JSON_VALIDATOR__IS_VALID_STRING_H
  2. #define JSON_TESTSUITE_JSON_VALIDATOR__IS_VALID_STRING_H
  3. #include "../BaseTest.h"
  4. class testJSONValidator__isValidString : public BaseTest {
  5. public:
  6. testJSONValidator__isValidString(const std::string & name) : BaseTest(name){}
  7. void testNormal(void);
  8. void testUnicode(void);
  9. void testStrict(void);
  10. void testNotStrict(void);
  11. void testNotString(void);
  12. void testSuddenEnd(void);
  13. };
  14. #endif