]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/testsuite.h
Remove more classbase
[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 TestSuite
18 {
19  public:
20         TestSuite();
21         ~TestSuite();
22
23         bool DoThreadTests();
24         bool DoWildTests();
25         bool DoCommaSepStreamTests();
26         bool DoSpaceSepStreamTests();
27 };
28
29 #endif