Began to implement print to terminal

This commit is contained in:
RedMarcher 2024-11-27 00:24:42 +00:00
parent 269de132b5
commit 4b1c234b2a

View file

@ -5729,6 +5729,12 @@ void UnitTestImpl::ConfigureXmlOutput() {
#endif // GTEST_HAS_FILE_SYSTEM
}
#if GTEST_HAS_TERMINAL
void PrintToTerminal() {
// Unsure of whether to use listener system, or to try and print events directly to terminal
}
#endif // GTEST_HAS_TERMINAL
#if GTEST_CAN_STREAM_RESULTS_
// Initializes event listeners for streaming test results in string form.
// Must not be called before InitGoogleTest.