]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/testTokenizer.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / tests / testTokenizer.h
CommitLineData
bbc27441 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
bbc27441
AJ
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
c9a4e310
FC
9#ifndef SQUID_TESTTOKENIZER_H_
10#define SQUID_TESTTOKENIZER_H_
11
12#include <cppunit/extensions/HelperMacros.h>
13
14class testTokenizer : public CPPUNIT_NS::TestFixture
15{
16 CPPUNIT_TEST_SUITE( testTokenizer );
17 CPPUNIT_TEST ( testCharacterSet );
18 CPPUNIT_TEST ( testTokenizerPrefix );
c571034b 19 CPPUNIT_TEST ( testTokenizerSuffix );
c9a4e310
FC
20 CPPUNIT_TEST ( testTokenizerSkip );
21 CPPUNIT_TEST ( testTokenizerToken );
a56b469c 22 CPPUNIT_TEST ( testTokenizerInt64 );
c9a4e310
FC
23 CPPUNIT_TEST_SUITE_END();
24
25protected:
26 void testTokenizerPrefix();
c571034b 27 void testTokenizerSuffix();
c9a4e310
FC
28 void testTokenizerSkip();
29 void testTokenizerToken();
30 void testCharacterSet();
a56b469c 31 void testTokenizerInt64();
c9a4e310
FC
32};
33
34#endif /* SQUID_TESTTOKENIZER_H_ */
f53969cc 35