catch2/include/internal/catch_interfaces_testcase.h

42 lines
1.4 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>
#include <memory>
2011-01-11 10:13:31 +01:00
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;
struct TestCaseInfo;
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();
};
class TestCaseHandle;
struct IConfig;
2012-05-15 09:02:36 +02:00
struct ITestCaseRegistry {
virtual ~ITestCaseRegistry();
virtual std::vector<std::unique_ptr<TestCaseInfo>> const& getAllInfos() const = 0;
virtual std::vector<TestCaseHandle> const& getAllTests() const = 0;
virtual std::vector<TestCaseHandle> 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( TestCaseHandle const& testCase, IConfig const& config );
bool matchTest( TestCaseHandle const& testCase, TestSpec const& testSpec, IConfig const& config );
std::vector<TestCaseHandle> filterTests( std::vector<TestCaseHandle> const& testCases, TestSpec const& testSpec, IConfig const& config );
std::vector<TestCaseHandle> const& getAllTestCasesSorted( IConfig const& config );
}
2011-01-11 10:13:31 +01:00
#endif // TWOBLUECUBES_CATCH_INTERFACES_TESTCASE_H_INCLUDED