X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftestsuite.h;h=0001bdec5fe75623924c05ec262bd63d53cf8efa;hb=71f7e47bcd7b72d7999daa9f061c8850b5a6521b;hp=447e2b15e9bfd550a9666f6e4967346e0ef0f7c9;hpb=c3b8b80a334cb638424185f2767b7853f43537da;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/testsuite.h b/include/testsuite.h index 447e2b15e..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. @@ -14,4 +14,18 @@ #ifndef __TESTSUITE_H__ #define __TESTSUITE_H__ +class InspIRCd; + +class TestSuite : public Extensible +{ + private: + InspIRCd* ServerInstance; + public: + TestSuite(InspIRCd* Instance); + ~TestSuite(); + + bool DoThreadTests(); + bool DoWildTests(); +}; + #endif