]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/testsuite.h
384f1b438b51c02a75453b95b21a312180d24fe7
[user/henk/code/inspircd.git] / include / testsuite.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __TESTSUITE_H__
15 #define __TESTSUITE_H__
16
17 class InspIRCd;
18
19 class TestSuite : public Extensible
20 {
21  private:
22         InspIRCd* ServerInstance;
23  public:
24         TestSuite(InspIRCd* Instance);
25         ~TestSuite();
26
27         bool DoThreadTests();
28         bool DoWildTests();
29         bool DoCommaSepStreamTests();
30         bool DoSpaceSepStreamTests();
31 };
32
33 #endif