X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftestsuite.h;h=2760ffb444fb76e2dd7bf1eb263d4f80e72d0823;hb=c2a3ebea46f3527e0680f1258725f95ff13f0880;hp=8abd0ff282a1bd6f5faabcc500b48fbdcebe2658;hpb=43847ec9c7e1a195163eb4c529f1c92fd1ace0a4;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/testsuite.h b/include/testsuite.h index 8abd0ff28..2760ffb44 100644 --- a/include/testsuite.h +++ b/include/testsuite.h @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2010 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -14,18 +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