aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/catch2/interfaces/catch_interfaces_testcase.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/catch2/interfaces/catch_interfaces_testcase.hpp')
-rw-r--r--src/catch2/interfaces/catch_interfaces_testcase.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/catch2/interfaces/catch_interfaces_testcase.hpp b/src/catch2/interfaces/catch_interfaces_testcase.hpp
index 78ee2021..daee8482 100644
--- a/src/catch2/interfaces/catch_interfaces_testcase.hpp
+++ b/src/catch2/interfaces/catch_interfaces_testcase.hpp
@@ -12,15 +12,7 @@
namespace Catch {
- class TestSpec;
struct TestCaseInfo;
-
- class ITestInvoker {
- public:
- virtual void invoke () const = 0;
- virtual ~ITestInvoker(); // = default
- };
-
class TestCaseHandle;
class IConfig;
@@ -33,11 +25,6 @@ namespace Catch {
virtual std::vector<TestCaseHandle> const& getAllTestsSorted( IConfig const& config ) const = 0;
};
- 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 );
-
}
#endif // CATCH_INTERFACES_TESTCASE_HPP_INCLUDED