diff --git a/test/console_TEST.cc b/test/console_TEST.cc index ab6afb6..83f35ed 100644 --- a/test/console_TEST.cc +++ b/test/console_TEST.cc @@ -25,3 +25,11 @@ TEST(ConsoleTest, MacroExpansionTest_ItShouldCompile) CONSOLE_BRIDGE_logDebug("Testing Log"); } } + +////////////////////////////////////////////////// +TEST(ConsoleTest, MultipleArguments) +{ + CONSOLE_BRIDGE_logError("no extra parameters"); + CONSOLE_BRIDGE_logError("one integer: %d", 42); + CONSOLE_BRIDGE_logError("two floats: %f, %.2f", 42.01, 1/3.0); +}