| 11497 | TestCase::TestCase( ITestInvoker* testCase, TestCaseInfo&& info ) : TestCaseInfo( std::move(info) ), test( testCase ) {} |
| 11498 | |
| 11499 | TestCase TestCase::withName( std::string const& _newName ) const { |
| 11500 | TestCase other( *this ); |
| 11501 | other.name = _newName; |
| 11502 | return other; |
| 11503 | } |
| 11504 | |
| 11505 | void TestCase::invoke() const { |
| 11506 | test->invoke(); |