1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-24 05:37:14 +01:00
SqMod/vendor/POCO/Util/testsuite/src/ValidatorTest.h

40 lines
616 B
C
Raw Normal View History

//
// ValidatorTest.h
//
// Definition of the ValidatorTest class.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef ValidatorTest_INCLUDED
#define ValidatorTest_INCLUDED
#include "Poco/Util/Util.h"
#include "CppUnit/TestCase.h"
class ValidatorTest: public CppUnit::TestCase
{
public:
ValidatorTest(const std::string& name);
~ValidatorTest();
void testRegExpValidator();
void testIntValidator();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // ValidatorTest_INCLUDED