-----------------------------------------------*/
| 420 | |
| 421 | /*-----------------------------------------------*/ |
| 422 | static void UnityPrintExpectedAndActualStrings(const char* expected, const char* actual) |
| 423 | { |
| 424 | UnityPrint(UnityStrExpected); |
| 425 | if (expected != NULL) |
| 426 | { |
| 427 | UNITY_OUTPUT_CHAR('\''); |
| 428 | UnityPrint(expected); |
| 429 | UNITY_OUTPUT_CHAR('\''); |
| 430 | } |
| 431 | else |
| 432 | { |
| 433 | UnityPrint(UnityStrNull); |
| 434 | } |
| 435 | UnityPrint(UnityStrWas); |
| 436 | if (actual != NULL) |
| 437 | { |
| 438 | UNITY_OUTPUT_CHAR('\''); |
| 439 | UnityPrint(actual); |
| 440 | UNITY_OUTPUT_CHAR('\''); |
| 441 | } |
| 442 | else |
| 443 | { |
| 444 | UnityPrint(UnityStrNull); |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | /*-----------------------------------------------*/ |
| 449 | static void UnityPrintExpectedAndActualStringsLen(const char* expected, |
no test coverage detected
searching dependent graphs…