mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-20 12:26:10 +01:00
Remove unused method on TestCase
This commit is contained in:
parent
d1cb727e85
commit
09b66ccfde
@ -158,12 +158,6 @@ namespace Catch {
|
|||||||
TestCase::TestCase( ITestInvoker* testCase, TestCaseInfo&& info ) : TestCaseInfo( std::move(info) ), test( testCase ) {}
|
TestCase::TestCase( ITestInvoker* testCase, TestCaseInfo&& info ) : TestCaseInfo( std::move(info) ), test( testCase ) {}
|
||||||
|
|
||||||
|
|
||||||
TestCase TestCase::withName( std::string const& _newName ) const {
|
|
||||||
TestCase other( *this );
|
|
||||||
other.name = _newName;
|
|
||||||
return other;
|
|
||||||
}
|
|
||||||
|
|
||||||
void TestCase::invoke() const {
|
void TestCase::invoke() const {
|
||||||
test->invoke();
|
test->invoke();
|
||||||
}
|
}
|
||||||
|
@ -62,8 +62,6 @@ namespace Catch {
|
|||||||
|
|
||||||
TestCase( ITestInvoker* testCase, TestCaseInfo&& info );
|
TestCase( ITestInvoker* testCase, TestCaseInfo&& info );
|
||||||
|
|
||||||
TestCase withName( std::string const& _newName ) const;
|
|
||||||
|
|
||||||
void invoke() const;
|
void invoke() const;
|
||||||
|
|
||||||
TestCaseInfo const& getTestCaseInfo() const;
|
TestCaseInfo const& getTestCaseInfo() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user