From 22a047ebb5a8d0c39eeab6bd599d97c1a3d04c57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rn=20Villesen=20Christensen?= Date: Fri, 14 Feb 2020 12:35:41 +0100 Subject: [PATCH] Updated documentation and examples to reflect the TEST_PRINTF function. --- docs/UnityConfigurationGuide.md | 24 ++++++++++++------------ examples/unity_config.h | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/UnityConfigurationGuide.md b/docs/UnityConfigurationGuide.md index 8155a0f..7633e0d 100644 --- a/docs/UnityConfigurationGuide.md +++ b/docs/UnityConfigurationGuide.md @@ -282,18 +282,18 @@ _Example:_ #define UNITY_INCLUDE_PRINT_FORMATTED int a = 0xfab1; -UnityPrintFormatted("Decimal %d\n", -7); -UnityPrintFormatted("Unsigned %u\n", 987); -UnityPrintFormatted("Float %f\n", 3.1415926535897932384); -UnityPrintFormatted("Binary %b\n", 0xA); -UnityPrintFormatted("Hex %X\n", 0xFAB); -UnityPrintFormatted("Pointer %p\n", &a); -UnityPrintFormatted("Character %c\n", 'F'); -UnityPrintFormatted("String %s\n", "My string"); -UnityPrintFormatted("Percent %%\n"); -UnityPrintFormatted("Color Red \033[41mFAIL\033[00m\n"); -UnityPrintFormatted("\n"); -UnityPrintFormatted("Multiple (%d) (%i) (%u) (%x)\n", -100, 0, 200, 0x12345); +TEST_PRINTF("Decimal %d\n", -7); +TEST_PRINTF("Unsigned %u\n", 987); +TEST_PRINTF("Float %f\n", 3.1415926535897932384); +TEST_PRINTF("Binary %b\n", 0xA); +TEST_PRINTF("Hex %X\n", 0xFAB); +TEST_PRINTF("Pointer %p\n", &a); +TEST_PRINTF("Character %c\n", 'F'); +TEST_PRINTF("String %s\n", "My string"); +TEST_PRINTF("Percent %%\n"); +TEST_PRINTF("Color Red \033[41mFAIL\033[00m\n"); +TEST_PRINTF("\n"); +TEST_PRINTF("Multiple (%d) (%i) (%u) (%x)\n", -100, 0, 200, 0x12345); ``` diff --git a/examples/unity_config.h b/examples/unity_config.h index 9127bcc..fc6cdb0 100644 --- a/examples/unity_config.h +++ b/examples/unity_config.h @@ -186,8 +186,8 @@ */ /* #define UNITY_EXCLUDE_STDDEF_H */ -/* Define this to enable the unity formatted print function: - * "UnityPrintFormatted" +/* Define this to enable the unity formatted print macro: + * "TEST_PRINTF" */ /* #define UNITY_INCLUDE_PRINT_FORMATTED */