]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testHttpReply.h
merged from trunk
[thirdparty/squid.git] / src / tests / testHttpReply.h
1
2 #ifndef SQUID_SRC_TEST_HTTP_REPLY_H
3 #define SQUID_SRC_TEST_HTTP_REPLY_H
4
5 #include <cppunit/extensions/HelperMacros.h>
6
7 /*
8 * test HttpReply
9 */
10
11 class testHttpReply : public CPPUNIT_NS::TestFixture
12 {
13 CPPUNIT_TEST_SUITE( testHttpReply );
14 CPPUNIT_TEST( testSanityCheckFirstLine );
15 CPPUNIT_TEST_SUITE_END();
16
17 public:
18 void setUp();
19
20 protected:
21 void testSanityCheckFirstLine();
22 };
23
24 #endif
25