]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testString.h
Merge from trunk
[thirdparty/squid.git] / src / tests / testString.h
1
2 #ifndef SQUID_SRC_TEST_STRING_H
3 #define SQUID_SRC_TEST_STRING_H
4
5 #include <cppunit/extensions/HelperMacros.h>
6
7 /*
8 * test the store framework
9 */
10
11 class testString : public CPPUNIT_NS::TestFixture
12 {
13 CPPUNIT_TEST_SUITE( testString );
14 CPPUNIT_TEST( testCmpDefault );
15 CPPUNIT_TEST( testCmpEmptyString );
16 CPPUNIT_TEST( testCmpNotEmptyDefault );
17 CPPUNIT_TEST( testSubstr );
18
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22 void setUp();
23
24 protected:
25 void testCmpDefault();
26 void testCmpEmptyString();
27 void testCmpNotEmptyDefault();
28 void testSubstr();
29 };
30
31 #endif
32