X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftestsuite.h;h=c760513f892411febae77d39241ac9c35178e185;hb=94eb36566e0de00c158bcbdd57a5d372bb76b264;hp=447e2b15e9bfd550a9666f6e4967346e0ef0f7c9;hpb=c3b8b80a334cb638424185f2767b7853f43537da;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/testsuite.h b/include/testsuite.h index 447e2b15e..c760513f8 100644 --- a/include/testsuite.h +++ b/include/testsuite.h @@ -1,17 +1,36 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/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 . */ -#ifndef __TESTSUITE_H__ -#define __TESTSUITE_H__ + +#pragma once + +#ifdef INSPIRCD_ENABLE_TESTSUITE + +class TestSuite +{ + public: + TestSuite(); + ~TestSuite(); + + bool DoThreadTests(); + bool DoWildTests(); + bool DoCommaSepStreamTests(); + bool DoSpaceSepStreamTests(); + bool DoGenerateUIDTests(); +}; #endif