]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/testsuite.h
Remove more classbase
[user/henk/code/inspircd.git] / include / testsuite.h
index 8abd0ff282a1bd6f5faabcc500b48fbdcebe2658..66a12ab39e80a674b3d0558916620cecc8dbc87d 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *          the file COPYING for details.
 #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