| 104 | void testVoid() override { printf("testVoid()\n"); } |
| 105 | |
| 106 | void testString(string& out, const string& thing) override { |
| 107 | printf("testString(\"%s\")\n", thing.c_str()); |
| 108 | out = thing; |
| 109 | } |
| 110 | |
| 111 | bool testBool(const bool thing) override { |
| 112 | printf("testBool(%s)\n", thing ? "true" : "false"); |
no outgoing calls
no test coverage detected