]> git.ipfire.org Git - thirdparty/squid.git/blob - lib/tests/testArray.h
SourceFormat Enforcement
[thirdparty/squid.git] / lib / tests / testArray.h
1
2 #ifndef SQUID_LIB_TEST_ARRAY_H
3 #define SQUID_LIB_TEST_ARRAY_H
4
5 #include <cppunit/extensions/HelperMacros.h>
6
7 /*
8 * A test case that is designed to produce
9 * example errors and failures
10 *
11 */
12
13 class testArray : public CPPUNIT_NS::TestFixture
14 {
15 CPPUNIT_TEST_SUITE( testArray );
16 CPPUNIT_TEST( all );
17 CPPUNIT_TEST_SUITE_END();
18
19 public:
20
21 protected:
22 void all();
23 };
24
25 #endif
26