1//
2// ValidatorTest.h
3//
4// Definition of the ValidatorTest class.
5//
6// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef ValidatorTest_INCLUDED
14#define ValidatorTest_INCLUDED
15
16
17#include "Poco/Util/Util.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class ValidatorTest: public CppUnit::TestCase
22{
23public:
24 ValidatorTest(const std::string& name);
25 ~ValidatorTest();
26
27 void testRegExpValidator();
28 void testIntValidator();
29
30 void setUp();
31 void tearDown();
32
33 static CppUnit::Test* suite();
34
35private:
36};
37
38
39#endif // ValidatorTest_INCLUDED
40