]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/testsuite.h
Merge pull request #1018 from SaberUK/insp20+hidekills
[user/henk/code/inspircd.git] / include / testsuite.h
index 0001bdec5fe75623924c05ec262bd63d53cf8efa..f91e508c930597c0fa12bb4f2e59322370599d00 100644 (file)
@@ -1,31 +1,36 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  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.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __TESTSUITE_H__
-#define __TESTSUITE_H__
 
-class InspIRCd;
+#ifndef TESTSUITE_H
+#define TESTSUITE_H
 
-class TestSuite : public Extensible
+class TestSuite
 {
- private:
-       InspIRCd* ServerInstance;
+       bool RealGenerateUIDTests();
  public:
-       TestSuite(InspIRCd* Instance);
+       TestSuite();
        ~TestSuite();
 
        bool DoThreadTests();
        bool DoWildTests();
+       bool DoCommaSepStreamTests();
+       bool DoSpaceSepStreamTests();
+       bool DoGenerateUIDTests();
 };
 
 #endif