mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-13 20:49:02 -04:00
30 lines
619 B
C++
30 lines
619 B
C++
/* +------------------------------------+
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
* +------------------------------------+
|
|
*
|
|
* InspIRCd: (C) 2002-2010 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 TestSuite
|
|
{
|
|
public:
|
|
TestSuite();
|
|
~TestSuite();
|
|
|
|
bool DoThreadTests();
|
|
bool DoWildTests();
|
|
bool DoCommaSepStreamTests();
|
|
bool DoSpaceSepStreamTests();
|
|
};
|
|
|
|
#endif
|