| 15 | std::string test_function1() { return "test_function()"; } |
| 16 | |
| 17 | std::string test_function2(MyEnum k) { return "test_function(enum=" + std::to_string(k) + ")"; } |
| 18 | |
| 19 | std::string test_function3(int i) { return "test_function(" + std::to_string(i) + ")"; } |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected