mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 19:17:38 +01:00
40 lines
616 B
C++
40 lines
616 B
C++
//
|
|
// 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
|