X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftestsuite.h;h=2760ffb444fb76e2dd7bf1eb263d4f80e72d0823;hb=c2a3ebea46f3527e0680f1258725f95ff13f0880;hp=b72e2b3a1449f336cda61830b29bdbf9da726b1c;hpb=54b2b600de7b6f74d387cb0db55375267572adde;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/testsuite.h b/include/testsuite.h index b72e2b3a1..2760ffb44 100644 --- a/include/testsuite.h +++ b/include/testsuite.h @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 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,13 +14,16 @@ #ifndef __TESTSUITE_H__ #define __TESTSUITE_H__ -class InspIRCd; - -class TestSuite : public Extensible +class TestSuite { public: - TestSuite(InspIRCd* ServerInstance); + TestSuite(); ~TestSuite(); + + bool DoThreadTests(); + bool DoWildTests(); + bool DoCommaSepStreamTests(); + bool DoSpaceSepStreamTests(); }; #endif