]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/testCacheManager.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / tests / testCacheManager.h
CommitLineData
4e0938ef 1/*
b8ae064d 2 * Copyright (C) 1996-2023 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 */
62ee09ca 8
9#ifndef SQUID_SRC_TEST_CACHEMANAGER_H
10#define SQUID_SRC_TEST_CACHEMANAGER_H
11
0cde91ae 12#include "compat/cppunit.h"
62ee09ca 13
14/*
15 * test the CacheManager implementation
16 */
17
18class testCacheManager : public CPPUNIT_NS::TestFixture
19{
20 CPPUNIT_TEST_SUITE( testCacheManager );
21 CPPUNIT_TEST( testCreate );
22 CPPUNIT_TEST( testRegister );
26e65059 23 CPPUNIT_TEST( testParseUrl );
62ee09ca 24 CPPUNIT_TEST_SUITE_END();
25
26public:
337b9aa4 27 void setUp() override;
62ee09ca 28
29protected:
30 void testCreate();
31 void testRegister();
26e65059 32 void testParseUrl();
62ee09ca 33};
34
35#endif
36