Microsoft Native Unit Test for C++ – where is the Logger output going?
Trying out C++ unit testing in Visual Studio 2019. Have added a C++ Native Unit Test Project unit test project to my solution. Then added the following Logger messages: TEST_CLASS_INITIALIZE(ClassInitialize) { Logger::WriteMessage("Setup on test class. Where will this appear?"); } // … TEST_METHOD(TestMethod1) { Logger::WriteMessage("Test method. Where is this message going??"); } The tests are… Read More Microsoft Native Unit Test for C++ – where is the Logger output going?