]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/testsuite.h
Update copyrights for 2009.
[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://www.inspircd.org/wiki/index.php/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 };
30
31 #endif