]> git.ipfire.org Git - thirdparty/squid.git/blob - src/base/testCharacterSet.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / base / testCharacterSet.h
1 /*
2 * Copyright (C) 1996-2014 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_BASE_TESTCHARACTERSET_H
10 #define SQUID_BASE_TESTCHARACTERSET_H
11
12 #include <cppunit/extensions/HelperMacros.h>
13
14 class testCharacterSet : public CPPUNIT_NS::TestFixture
15 {
16 CPPUNIT_TEST_SUITE( testCharacterSet );
17 CPPUNIT_TEST( CharacterSetConstruction );
18 CPPUNIT_TEST( CharacterSetAdd );
19 CPPUNIT_TEST( CharacterSetAddRange );
20 CPPUNIT_TEST( CharacterSetConstants );
21 CPPUNIT_TEST( CharacterSetUnion );
22 CPPUNIT_TEST_SUITE_END();
23
24 protected:
25 void CharacterSetConstruction();
26 void CharacterSetAdd();
27 void CharacterSetAddRange();
28 void CharacterSetConstants();
29 void CharacterSetUnion();
30 };
31
32 #endif /* SQUID_BASE_TESTCHARACTERSET_H */
33