From d6e5eee0ce3e4e132a7525a59a85976068aa7d15 Mon Sep 17 00:00:00 2001 From: Martin Zink Date: Thu, 20 Feb 2025 11:52:56 +0100 Subject: [PATCH] ConsumeWindowsEventLogTests.cpp --- .../windows-event-log/tests/ConsumeWindowsEventLogTests.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/windows-event-log/tests/ConsumeWindowsEventLogTests.cpp b/extensions/windows-event-log/tests/ConsumeWindowsEventLogTests.cpp index e2061d6448..548c6fb07d 100644 --- a/extensions/windows-event-log/tests/ConsumeWindowsEventLogTests.cpp +++ b/extensions/windows-event-log/tests/ConsumeWindowsEventLogTests.cpp @@ -353,6 +353,8 @@ TEST_CASE("ConsumeWindowsEventLog output format can be set", "[create][output_fo TEST_CASE("ConsumeWindowsEventLog prints events in plain text correctly", "[onTrigger]") { std::string event = SimpleFormatTestController{APPLICATION_CHANNEL, QUERY, "Plaintext"}.run(); + + std::cout << event << std::endl; CHECK(!event.empty()); CHECK(event.find(R"(Log Name: Application)") != std::string::npos); CHECK(event.find(R"(Source: Application)") != std::string::npos);