mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-23 21:15:39 +02:00
Changed some names in test case registry
- in preparation for a bigger refactoring
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user