]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testTokenizer.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / tests / testTokenizer.h
1 /*
2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_TESTTOKENIZER_H_
10 #define SQUID_TESTTOKENIZER_H_
11
12 #include "compat/cppunit.h"
13
14 class testTokenizer : public CPPUNIT_NS::TestFixture
15 {
16 CPPUNIT_TEST_SUITE( testTokenizer );
17 CPPUNIT_TEST ( testCharacterSet );
18 CPPUNIT_TEST ( testTokenizerPrefix );
19 CPPUNIT_TEST ( testTokenizerSuffix );
20 CPPUNIT_TEST ( testTokenizerSkip );
21 CPPUNIT_TEST ( testTokenizerToken );
22 CPPUNIT_TEST ( testTokenizerInt64 );
23 CPPUNIT_TEST_SUITE_END();
24
25 protected:
26 void testTokenizerPrefix();
27 void testTokenizerSuffix();
28 void testTokenizerSkip();
29 void testTokenizerToken();
30 void testCharacterSet();
31 void testTokenizerInt64();
32 };
33
34 #endif /* SQUID_TESTTOKENIZER_H_ */
35