| 497 | |
| 498 | template<typename C> |
| 499 | auto makeTestInvoker( void (C::*testAsMethod)() ) noexcept -> ITestInvoker* { |
| 500 | return new(std::nothrow) TestInvokerAsMethod<C>( testAsMethod ); |
| 501 | } |
| 502 | |
| 503 | struct NameAndTags { |
| 504 | NameAndTags( StringRef const& name_ = StringRef(), StringRef const& tags_ = StringRef() ) noexcept; |
nothing calls this directly
no outgoing calls
no test coverage detected