versadac  1
versadac - Scalable Recorder Firmware
isValidString.h
1 #ifndef JSON_TESTSUITE_JSON_VALIDATOR__IS_VALID_STRING_H
2 #define JSON_TESTSUITE_JSON_VALIDATOR__IS_VALID_STRING_H
3 
4 #include "../BaseTest.h"
5 
7 public:
8  testJSONValidator__isValidString(const std::string & name) : BaseTest(name){}
9  void testNormal(void);
10  void testUnicode(void);
11  void testStrict(void);
12  void testNotStrict(void);
13  void testNotString(void);
14  void testSuddenEnd(void);
15 };
16 
17 #endif
Definition: BaseTest.h:9
Definition: isValidString.h:6