-----------------------------------------------*/
| 447 | |
| 448 | /*-----------------------------------------------*/ |
| 449 | static void UnityPrintExpectedAndActualStringsLen(const char* expected, |
| 450 | const char* actual, |
| 451 | const UNITY_UINT32 length) |
| 452 | { |
| 453 | UnityPrint(UnityStrExpected); |
| 454 | if (expected != NULL) |
| 455 | { |
| 456 | UNITY_OUTPUT_CHAR('\''); |
| 457 | UnityPrintLen(expected, length); |
| 458 | UNITY_OUTPUT_CHAR('\''); |
| 459 | } |
| 460 | else |
| 461 | { |
| 462 | UnityPrint(UnityStrNull); |
| 463 | } |
| 464 | UnityPrint(UnityStrWas); |
| 465 | if (actual != NULL) |
| 466 | { |
| 467 | UNITY_OUTPUT_CHAR('\''); |
| 468 | UnityPrintLen(actual, length); |
| 469 | UNITY_OUTPUT_CHAR('\''); |
| 470 | } |
| 471 | else |
| 472 | { |
| 473 | UnityPrint(UnityStrNull); |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | /*----------------------------------------------- |
| 478 | * Assertion & Control Helpers |
no test coverage detected
searching dependent graphs…