2011-01-07 14:57:32 -05:00
|
|
|
/*
|
|
|
|
* Created by Phil on 07/01/2011.
|
|
|
|
* Copyright 2011 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_INTERFACES_TESTCASE_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_INTERFACES_TESTCASE_H_INCLUDED
|
|
|
|
|
2012-08-28 03:20:18 -04:00
|
|
|
#include "catch_ptr.hpp"
|
|
|
|
|
2011-01-11 04:13:31 -05:00
|
|
|
#include <vector>
|
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
namespace Catch {
|
2012-08-23 15:08:50 -04:00
|
|
|
|
|
|
|
class TestCaseFilters;
|
|
|
|
|
2012-08-14 03:38:22 -04:00
|
|
|
struct ITestCase : IShared {
|
|
|
|
virtual void invoke () const = 0;
|
|
|
|
protected:
|
2012-08-13 02:46:10 -04:00
|
|
|
virtual ~ITestCase();
|
2011-01-07 14:57:32 -05:00
|
|
|
};
|
2011-01-11 04:13:31 -05:00
|
|
|
|
2012-11-22 14:17:20 -05:00
|
|
|
class TestCase;
|
2011-01-07 14:57:32 -05:00
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
struct ITestCaseRegistry {
|
2012-08-13 02:46:10 -04:00
|
|
|
virtual ~ITestCaseRegistry();
|
2013-04-23 13:58:56 -04:00
|
|
|
virtual std::vector<TestCase> const& getAllTests() const = 0;
|
|
|
|
virtual std::vector<TestCase> getMatchingTestCases( std::string const& rawTestSpec ) const = 0;
|
2011-01-11 04:13:31 -05:00
|
|
|
};
|
2011-01-07 14:57:32 -05:00
|
|
|
}
|
2011-01-11 04:13:31 -05:00
|
|
|
|
2011-02-16 14:02:09 -05:00
|
|
|
#endif // TWOBLUECUBES_CATCH_INTERFACES_TESTCASE_H_INCLUDED
|