| 822 | |
| 823 | template<typename C> |
| 824 | auto makeTestInvoker( void (C::*testAsMethod)() ) noexcept -> ITestInvoker* { |
| 825 | return new(std::nothrow) TestInvokerAsMethod<C>( testAsMethod ); |
| 826 | } |
| 827 | |
| 828 | struct NameAndTags { |
| 829 | NameAndTags( StringRef const& name_ = StringRef(), StringRef const& tags_ = StringRef() ) noexcept; |
nothing calls this directly
no outgoing calls
no test coverage detected