2008-02-21 15:49:32 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2009-01-02 18:16:05 +00:00
|
|
|
* InspIRCd: (C) 2002-2009 InspIRCd Development Team
|
2009-03-15 12:42:35 +00:00
|
|
|
* See: http://wiki.inspircd.org/Credits
|
2008-02-21 15:49:32 +00:00
|
|
|
*
|
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TESTSUITE_H__
|
|
|
|
#define __TESTSUITE_H__
|
|
|
|
|
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();
|
2008-02-21 15:59:57 +00:00
|
|
|
};
|
|
|
|
|
2008-02-21 15:49:32 +00:00
|
|
|
#endif
|