| 2268 | |
| 2269 | template<typename T> |
| 2270 | void captureValues( size_t index, T const& value ) { |
| 2271 | captureValue( index, Catch::Detail::stringify( value ) ); |
| 2272 | } |
| 2273 | |
| 2274 | template<typename T, typename... Ts> |
| 2275 | void captureValues( size_t index, T const& value, Ts const&... values ) { |
nothing calls this directly
no test coverage detected