]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/testsuite.h
Move destruction logic for User and Spanningtree into cull()
[user/henk/code/inspircd.git] / include / testsuite.h
index 45456aa4714a5247ac67cf6bbf0f6cf662d7452f..89318e32f82d22a51a793c4e51ce55e0e58f3cad 100644 (file)
@@ -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.
 #ifndef __TESTSUITE_H__
 #define __TESTSUITE_H__
 
-class InspIRCd;
-
 class TestSuite : public Extensible
 {
- private:
-       InspIRCd* ServerInstance;
  public:
-       TestSuite(InspIRCd* Instance);
+       TestSuite();
        ~TestSuite();
 
        bool DoThreadTests();
        bool DoWildTests();
+       bool DoCommaSepStreamTests();
+       bool DoSpaceSepStreamTests();
 };
 
 #endif