~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to src/tests/testCoss.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2006-11-11 10:32:06 UTC
  • Revision ID: james.westby@ubuntu.com-20061111103206-f3p0r9g0vq44rp3r
Tags: upstream-3.0.PRE5
ImportĀ upstreamĀ versionĀ 3.0.PRE5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 testCoss : public CPPUNIT_NS::TestFixture
 
12
{
 
13
    CPPUNIT_TEST_SUITE( testCoss );
 
14
    CPPUNIT_TEST( testCossCreate );
 
15
    CPPUNIT_TEST( testCossSearch );
 
16
    CPPUNIT_TEST( testDefaultEngine );
 
17
    CPPUNIT_TEST_SUITE_END();
 
18
 
 
19
public:
 
20
 
 
21
protected:
 
22
    void commonInit();
 
23
    void testCossCreate();
 
24
    void testCossSearch();
 
25
    void testDefaultEngine();
 
26
};
 
27
 
 
28
#endif
 
29