catch2/include/internal/catch_interfaces_testcase.h

39 lines
1.2 KiB
C
Raw Normal View History

/*
* 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
2011-01-11 10:13:31 +01:00
#include <vector>
2012-05-15 09:02:36 +02:00
namespace Catch {
2012-08-23 21:08:50 +02:00
2014-05-16 19:24:07 +02:00
class TestSpec;
2012-08-23 21:08:50 +02:00
struct ITestInvoker {
2012-08-14 09:38:22 +02:00
virtual void invoke () const = 0;
virtual ~ITestInvoker();
};
2012-11-22 20:17:20 +01:00
class TestCase;
struct IConfig;
2012-05-15 09:02:36 +02:00
struct ITestCaseRegistry {
virtual ~ITestCaseRegistry();
virtual std::vector<TestCase> const& getAllTests() const = 0;
2015-08-05 00:11:56 +02:00
virtual std::vector<TestCase> const& getAllTestsSorted( IConfig const& config ) const = 0;
2011-01-11 10:13:31 +01:00
};
2015-08-05 00:11:56 +02:00
bool isThrowSafe( TestCase const& testCase, IConfig const& config );
2015-08-05 00:11:56 +02:00
bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config );
std::vector<TestCase> const& getAllTestCasesSorted( IConfig const& config );
}
2011-01-11 10:13:31 +01:00
#endif // TWOBLUECUBES_CATCH_INTERFACES_TESTCASE_H_INCLUDED