securityTest.h 318 B

123456789101112
  1. #ifndef JSON_TESTSUITE_JSON_VALIDATOR__SECURITY_TEST_H
  2. #define JSON_TESTSUITE_JSON_VALIDATOR__SECURITY_TEST_H
  3. #include "../BaseTest.h"
  4. class testJSONValidator__securityTest : public BaseTest {
  5. public:
  6. testJSONValidator__securityTest(const std::string & name) : BaseTest(name){}
  7. void testsecurity(void);
  8. };
  9. #endif