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