]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testStatHist.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / testStatHist.h
1 /*
2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
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
9 /*
10 * StatHist unit test
11 */
12
13 #ifndef TESTSTATHIST_H_
14 #define TESTSTATHIST_H_
15
16 #include <cppunit/extensions/HelperMacros.h>
17
18 class testStatHist : public CPPUNIT_NS::TestFixture
19 {
20 CPPUNIT_TEST_SUITE( testStatHist );
21 CPPUNIT_TEST( testStatHistBaseEquality );
22 CPPUNIT_TEST( testStatHistBaseAssignment );
23 CPPUNIT_TEST( testStatHistLog );
24 CPPUNIT_TEST( testStatHistSum );
25 CPPUNIT_TEST_SUITE_END();
26
27 public:
28
29 protected:
30 void testStatHistBaseEquality();
31 void testStatHistBaseAssignment();
32 void testStatHistLog();
33 void testStatHistSum();
34 };
35
36 #endif /* TESTSTATHIST_H_ */
37