]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testStatHist.h
9572c8dd316aa832398d06207844057c8e5cb217
[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_SUITE_END();
17
18 public:
19
20 protected:
21 void testStatHistBaseEquality();
22 void testStatHistBaseAssignment();
23 void testStatHistLog();
24 };
25
26 #endif /* TESTSTATHIST_H_ */