X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftestsuite.h;h=0001bdec5fe75623924c05ec262bd63d53cf8efa;hb=abe0f102d7899780200b3d86557316ef71b57dab;hp=b72e2b3a1449f336cda61830b29bdbf9da726b1c;hpb=54b2b600de7b6f74d387cb0db55375267572adde;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/testsuite.h b/include/testsuite.h index b72e2b3a1..0001bdec5 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-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -18,9 +18,14 @@ class InspIRCd; class TestSuite : public Extensible { + private: + InspIRCd* ServerInstance; public: - TestSuite(InspIRCd* ServerInstance); + TestSuite(InspIRCd* Instance); ~TestSuite(); + + bool DoThreadTests(); + bool DoWildTests(); }; #endif