]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testCharacterSet.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / tests / testCharacterSet.h
1 /*
2 * Copyright (C) 1996-2023 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 "compat/cppunit.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( CharacterSetEqualityOp );
21 CPPUNIT_TEST( CharacterSetConstants );
22 CPPUNIT_TEST( CharacterSetUnion );
23 CPPUNIT_TEST( CharacterSetSubtract );
24 CPPUNIT_TEST_SUITE_END();
25
26 protected:
27 void CharacterSetConstruction();
28 void CharacterSetAdd();
29 void CharacterSetAddRange();
30 void CharacterSetConstants();
31 void CharacterSetUnion();
32 void CharacterSetEqualityOp();
33 void CharacterSetSubtract();
34 };
35
36 #endif /* SQUID_BASE_TESTCHARACTERSET_H */
37