| 14158 | TestCase::TestCase( ITestInvoker* testCase, TestCaseInfo&& info ) : TestCaseInfo( std::move(info) ), test( testCase ) {} |
| 14159 | |
| 14160 | TestCase TestCase::withName( std::string const& _newName ) const { |
| 14161 | TestCase other( *this ); |
| 14162 | other.name = _newName; |
| 14163 | return other; |
| 14164 | } |
| 14165 | |
| 14166 | void TestCase::invoke() const { |
| 14167 | test->invoke(); |