2008-02-21 15:49:32 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire 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.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TESTSUITE_H__
|
|
|
|
#define __TESTSUITE_H__
|
|
|
|
|
2008-02-21 15:59:57 +00:00
|
|
|
class InspIRCd;
|
|
|
|
|
|
|
|
class TestSuite : public Extensible
|
|
|
|
{
|
2008-02-21 16:32:38 +00:00
|
|
|
private:
|
|
|
|
InspIRCd* ServerInstance;
|
2008-02-21 15:59:57 +00:00
|
|
|
public:
|
2008-02-21 16:32:38 +00:00
|
|
|
TestSuite(InspIRCd* Instance);
|
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();
|
2008-02-21 15:59:57 +00:00
|
|
|
};
|
|
|
|
|
2008-02-21 15:49:32 +00:00
|
|
|
#endif
|