]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/testURL.h
More decoupling work:
[thirdparty/squid.git] / src / tests / testURL.h
CommitLineData
985c86bc 1
2#ifndef SQUID_SRC_TEST_URL_H
3#define SQUID_SRC_TEST_URL_H
4
5#include <cppunit/extensions/HelperMacros.h>
6
7/*
8 * test the URL class.
9 */
10
11class testURL : public CPPUNIT_NS::TestFixture
12{
13 CPPUNIT_TEST_SUITE( testURL );
14 CPPUNIT_TEST( testConstructScheme );
15 CPPUNIT_TEST( testDefaultConstructor );
16 CPPUNIT_TEST_SUITE_END();
17
18public:
19
20protected:
21
22 void testConstructScheme();
23 void testDefaultConstructor();
24};
25
26#endif
27