]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testUfs.h
Fix bug 1218 by adding tests for the io engine of coss and ufs swapdirs after parsing...
[thirdparty/squid.git] / src / tests / testUfs.h
1
2 #ifndef SQUID_SRC_TEST_STORECONTROLLER_H
3 #define SQUID_SRC_TEST_STORECONTROLLER_H
4
5 #include <cppunit/extensions/HelperMacros.h>
6
7 /*
8 * test the store framework
9 */
10
11 class testUfs : public CPPUNIT_NS::TestFixture
12 {
13 CPPUNIT_TEST_SUITE( testUfs );
14 CPPUNIT_TEST( testUfsSearch );
15 CPPUNIT_TEST( testUfsDefaultEngine );
16 CPPUNIT_TEST_SUITE_END();
17
18 public:
19
20 protected:
21 void commonInit();
22 void testUfsSearch();
23 void testUfsDefaultEngine();
24 };
25
26 #endif
27