]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/testACLMaxUserIP.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / testACLMaxUserIP.h
CommitLineData
4e0938ef 1/*
ef57eb7b 2 * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
4e0938ef
AJ
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 */
d295d770 8
9#ifndef SQUID_SRC_TEST_ACLMAXUSERIP_H
10#define SQUID_SRC_TEST_ACLMAXUSERIP_H
11
2f1431ea
AJ
12#if USE_AUTH
13
d295d770 14#include <cppunit/extensions/HelperMacros.h>
15
16/*
17 * demonstration test file, as new idioms are made they will
18 * be shown in the testBoilerplate source.
19 */
20
21class testACLMaxUserIP : public CPPUNIT_NS::TestFixture
22{
23 CPPUNIT_TEST_SUITE( testACLMaxUserIP );
24 /* note the statement here and then the actual prototype below */
25 CPPUNIT_TEST( testDefaults );
26 CPPUNIT_TEST( testParseLine );
27 CPPUNIT_TEST_SUITE_END();
28
29public:
30
31protected:
32 void testDefaults();
33 void testParseLine();
34};
35
2f1431ea 36#endif /* USE_AUTH */
d295d770 37#endif /* SQUID_SRC_TEST_ACLMAXUSERIP_H */
f53969cc 38