]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/testStatHist.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / tests / testStatHist.h
CommitLineData
4e0938ef 1/*
77b1029d 2 * Copyright (C) 1996-2020 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 */
8
4541d989
FC
9/*
10 * StatHist unit test
11 */
12
13#ifndef TESTSTATHIST_H_
14#define TESTSTATHIST_H_
15
16#include <cppunit/extensions/HelperMacros.h>
17
4541d989
FC
18class testStatHist : public CPPUNIT_NS::TestFixture
19{
20 CPPUNIT_TEST_SUITE( testStatHist );
21 CPPUNIT_TEST( testStatHistBaseEquality );
22 CPPUNIT_TEST( testStatHistBaseAssignment );
23 CPPUNIT_TEST( testStatHistLog );
ff1eb053 24 CPPUNIT_TEST( testStatHistSum );
4541d989
FC
25 CPPUNIT_TEST_SUITE_END();
26
00b7155c 27public:
4541d989 28
00b7155c 29protected:
4541d989
FC
30 void testStatHistBaseEquality();
31 void testStatHistBaseAssignment();
32 void testStatHistLog();
ff1eb053 33 void testStatHistSum();
4541d989
FC
34};
35
36#endif /* TESTSTATHIST_H_ */
f53969cc 37