2012-04-19 20:58:29 +02:00
|
|
|
/*
|
|
|
|
* InspIRCd -- Internet Relay Chat Daemon
|
2008-02-21 15:49:32 +00:00
|
|
|
*
|
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* 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.
|
2008-02-21 15:49:32 +00:00
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* 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/>.
|
2008-02-21 15:49:32 +00:00
|
|
|
*/
|
|
|
|
|
2012-04-19 20:58:29 +02:00
|
|
|
|
2013-04-02 20:12:15 +01:00
|
|
|
#pragma once
|
2008-02-21 15:49:32 +00:00
|
|
|
|
2009-10-18 16:18:44 +00:00
|
|
|
class TestSuite
|
2008-02-21 15:59:57 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-09-26 14:13:13 +00:00
|
|
|
TestSuite();
|
2008-02-21 15:59:57 +00:00
|
|
|
~TestSuite();
|
2008-02-21 16:32:38 +00:00
|
|
|
|
|
|
|
bool DoThreadTests();
|
2008-05-09 17:24:50 +00:00
|
|
|
bool DoWildTests();
|
2009-08-06 14:45:05 +00:00
|
|
|
bool DoCommaSepStreamTests();
|
2009-08-06 15:09:22 +00:00
|
|
|
bool DoSpaceSepStreamTests();
|
2012-05-27 23:30:02 +02:00
|
|
|
bool DoGenerateUIDTests();
|
2008-02-21 15:59:57 +00:00
|
|
|
};
|