-----------------------------------------------*/
| 1312 | |
| 1313 | /*-----------------------------------------------*/ |
| 1314 | void UnityIgnore(const char* msg, const UNITY_LINE_TYPE line) |
| 1315 | { |
| 1316 | RETURN_IF_FAIL_OR_IGNORE; |
| 1317 | |
| 1318 | UnityTestResultsBegin(Unity.TestFile, line); |
| 1319 | UnityPrint(UnityStrIgnore); |
| 1320 | if (msg != NULL) |
| 1321 | { |
| 1322 | UNITY_OUTPUT_CHAR(':'); |
| 1323 | UNITY_OUTPUT_CHAR(' '); |
| 1324 | UnityPrint(msg); |
| 1325 | } |
| 1326 | UNITY_IGNORE_AND_BAIL; |
| 1327 | } |
| 1328 | |
| 1329 | /*-----------------------------------------------*/ |
| 1330 | void UnityDefaultTestRun(UnityTestFunction Func, const char* FuncName, const int FuncLineNum) |
nothing calls this directly
no test coverage detected
searching dependent graphs…