]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testStatHist.h
Merged from trunk (r13356).
[thirdparty/squid.git] / src / tests / testStatHist.h
1 /*
2 * StatHist unit test
3 */
4
5 #ifndef TESTSTATHIST_H_
6 #define TESTSTATHIST_H_
7
8 #include <cppunit/extensions/HelperMacros.h>
9
10 class testStatHist : public CPPUNIT_NS::TestFixture
11 {
12 CPPUNIT_TEST_SUITE( testStatHist );
13 CPPUNIT_TEST( testStatHistBaseEquality );
14 CPPUNIT_TEST( testStatHistBaseAssignment );
15 CPPUNIT_TEST( testStatHistLog );
16 CPPUNIT_TEST( testStatHistSum );
17 CPPUNIT_TEST_SUITE_END();
18
19 public:
20
21 protected:
22 void testStatHistBaseEquality();
23 void testStatHistBaseAssignment();
24 void testStatHistLog();
25 void testStatHistSum();
26 };
27
28 #endif /* TESTSTATHIST_H_ */