Changed some names in test case registry

- in preparation for a bigger refactoring
This commit is contained in:
Phil Nash
2017-07-12 18:01:54 +01:00
parent 10c36aa74c
commit 79627cdcdb
7 changed files with 25 additions and 38 deletions

View File

@@ -15,12 +15,12 @@ namespace Catch {
class TestSpec;
struct ITestCase {
struct ITestInvoker {
virtual void invoke () const = 0;
virtual ~ITestCase();
virtual ~ITestInvoker();
};
using ITestCasePtr = std::shared_ptr<ITestCase>;
using ITestCasePtr = std::shared_ptr<ITestInvoker>;
class TestCase;
struct IConfig;