1//
2// StreamTokenizerTest.h
3//
4// Definition of the StreamTokenizerTest 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
13#ifndef StreamTokenizerTest_INCLUDED
14#define StreamTokenizerTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class StreamTokenizerTest: public CppUnit::TestCase
22{
23public:
24 StreamTokenizerTest(const std::string& name);
25 ~StreamTokenizerTest();
26
27 void testTokenizer1();
28 void testTokenizer2();
29 void testTokenizer3();
30 void testTokenizer4();
31 void testTokenizer5();
32 void testTokenizer6();
33 void testTokenizer7();
34 void testTokenizer8();
35 void testTokenizer9();
36
37 void setUp();
38 void tearDown();
39
40 static CppUnit::Test* suite();
41
42private:
43};
44
45
46#endif // StreamTokenizerTest_INCLUDED
47