]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/testsuite.cpp
More test suite stuff
[user/henk/code/inspircd.git] / src / testsuite.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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 /* $Install: src/inspircd $(BINPATH) */
15
16 #include "inspircd.h"
17 #include "testsuite.h"
18
19 TestSuite::TestSuite(InspIRCd* ServerInstance)
20 {
21         FOREACH_MOD(I_OnRunTestSuite, OnRunTestSuite());
22 }
23
24 TestSuite::~TestSuite()
25 {
26 }
27
28 /* $Core: libIRCDtestsuite */