X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftestsuite.h;h=2760ffb444fb76e2dd7bf1eb263d4f80e72d0823;hb=511c11b8da024363fe2711a5ea9d600326073c8c;hp=a3b4f1f2446e60c365dee1d38bf42ba5984b90d5;hpb=157cd2d7c7e40541be48a5392fb1da3e961fa3d7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/testsuite.h b/include/testsuite.h index a3b4f1f24..2760ffb44 100644 --- a/include/testsuite.h +++ b/include/testsuite.h @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * InspIRCd: (C) 2002-2010 InspIRCd Development Team * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see @@ -14,19 +14,16 @@ #ifndef __TESTSUITE_H__ #define __TESTSUITE_H__ -class InspIRCd; - -class TestSuite : public Extensible +class TestSuite { - private: - InspIRCd* ServerInstance; public: - TestSuite(InspIRCd* Instance); + TestSuite(); ~TestSuite(); bool DoThreadTests(); bool DoWildTests(); bool DoCommaSepStreamTests(); + bool DoSpaceSepStreamTests(); }; #endif