Stubbed out product code using linker, function pointer, or overriding */
| 5 | |
| 6 | /* Stubbed out product code using linker, function pointer, or overriding */ |
| 7 | static int foo(const char* param_string, int param_int) |
| 8 | { |
| 9 | /* Tell CppUTest Mocking what we mock. Also return recorded value */ |
| 10 | return mock().actualCall("Foo") |
| 11 | .withParameter("param_string", param_string) |
| 12 | .withParameter("param_int", param_int) |
| 13 | .returnValue().getIntValue(); |
| 14 | } |
| 15 | |
| 16 | static void bar(double param_double, const char* param_string) |
| 17 | { |
no test coverage detected