| 3352 | } |
| 3353 | |
| 3354 | void testCstringsEscapeSequence(void) |
| 3355 | { |
| 3356 | #ifndef USING_OUTPUT_SPY |
| 3357 | TEST_IGNORE(); |
| 3358 | #else |
| 3359 | startPutcharSpy(); |
| 3360 | UnityPrint("\x16\x10"); |
| 3361 | endPutcharSpy(); |
| 3362 | TEST_ASSERT_EQUAL_STRING("\\x16\\x10", getBufferPutcharSpy()); |
| 3363 | #endif |
| 3364 | } |
| 3365 | |
| 3366 | void testHexPrintsUpToMaxNumberOfNibbles(void) |
| 3367 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…