| 11771 | TestCase::TestCase( ITestInvoker* testCase, TestCaseInfo&& info ) : TestCaseInfo( std::move(info) ), test( testCase ) {} |
| 11772 | |
| 11773 | TestCase TestCase::withName( std::string const& _newName ) const { |
| 11774 | TestCase other( *this ); |
| 11775 | other.name = _newName; |
| 11776 | return other; |
| 11777 | } |
| 11778 | |
| 11779 | void TestCase::invoke() const { |
| 11780 | test->invoke(); |