| 183 | return true; |
| 184 | } |
| 185 | void void_function_with_input_output_params(int input1, int& output2) |
| 186 | { |
| 187 | output2 = input1 + 1; |
| 188 | } |
| 189 | TEST_CASE("timed_with_input_output_args") |
| 190 | { |
| 191 | // With non void function |
nothing calls this directly
no outgoing calls
no test coverage detected