#ifndef SQUID_SRC_TEST_STOREHASHINDEX_H #define SQUID_SRC_TEST_STOREHASHINDEX_H #include /* * test the store framework */ class testStoreHashIndex : public CPPUNIT_NS::TestFixture { CPPUNIT_TEST_SUITE( testStoreHashIndex ); CPPUNIT_TEST( testStats ); CPPUNIT_TEST( testMaxSize ); CPPUNIT_TEST( testSearch ); CPPUNIT_TEST_SUITE_END(); public: protected: void testStats(); void testMaxSize(); void testSearch(); }; #endif