]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/testStore.h
mkrelease: allow two digits for minor release numbers (#1837)
[thirdparty/squid.git] / src / tests / testStore.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 */
c8f4eac4 8
ff9d9458
FC
9#ifndef SQUID_SRC_TESTS_TESTSTORE_H
10#define SQUID_SRC_TESTS_TESTSTORE_H
c8f4eac4 11
0cde91ae 12#include "compat/cppunit.h"
c8f4eac4 13
14/*
15 * test the store framework
16 */
17
41e9c9f0 18class TestStore: public CPPUNIT_NS::TestFixture
c8f4eac4 19{
41e9c9f0 20 CPPUNIT_TEST_SUITE( TestStore );
d448e1eb 21 CPPUNIT_TEST( testSwapMetaTypeClassification );
c8f4eac4 22 CPPUNIT_TEST_SUITE_END();
23
24public:
25
26protected:
d448e1eb 27 void testSwapMetaTypeClassification();
c8f4eac4 28};
29
ff9d9458 30#endif /* SQUID_SRC_TESTS_TESTSTORE_H */
c8f4eac4 31