X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftestsuite.h;h=2760ffb444fb76e2dd7bf1eb263d4f80e72d0823;hb=c2a3ebea46f3527e0680f1258725f95ff13f0880;hp=447e2b15e9bfd550a9666f6e4967346e0ef0f7c9;hpb=c3b8b80a334cb638424185f2767b7853f43537da;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/testsuite.h b/include/testsuite.h index 447e2b15e..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,4 +14,16 @@ #ifndef __TESTSUITE_H__ #define __TESTSUITE_H__ +class TestSuite +{ + public: + TestSuite(); + ~TestSuite(); + + bool DoThreadTests(); + bool DoWildTests(); + bool DoCommaSepStreamTests(); + bool DoSpaceSepStreamTests(); +}; + #endif