| 131 | } |
| 132 | |
| 133 | void CppUTestStore(void**function) |
| 134 | { |
| 135 | if (pointerTableIndex >= SetPointerPlugin::MAX_SET) { |
| 136 | FAIL("Maximum number of function pointers installed!"); |
| 137 | } |
| 138 | setlist[pointerTableIndex].orig_value = *function; |
| 139 | setlist[pointerTableIndex].orig = function; |
| 140 | pointerTableIndex++; |
| 141 | } |
| 142 | |
| 143 | void SetPointerPlugin::postTestAction(UtestShell& /*test*/, TestResult& /*result*/) |
| 144 | { |
nothing calls this directly
no outgoing calls
no test coverage detected