diff options
Diffstat (limited to 'src/testsuite.cpp')
-rw-r--r-- | src/testsuite.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testsuite.cpp b/src/testsuite.cpp index a9ae8caba..80a9a3d38 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -16,4 +16,13 @@ #include "inspircd.h" #include "testsuite.h" +TestSuite::TestSuite(InspIRCd* ServerInstance) +{ + FOREACH_MOD(I_OnRunTestSuite, OnRunTestSuite()); +} + +TestSuite::~TestSuite() +{ +} + /* $Core: libIRCDtestsuite */ |