// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #include "stdafx.h" #include "gtest/internal/gtest-port.h" class FileManagerWrapper { public: PipeOutputManager * manager; FileManagerWrapper(PipeOutputManager* m) : manager(m) { manager->Start(); } ~FileManagerWrapper() { delete manager; } }; namespace PipeOutputManagerTests { TEST(PipeManagerOutputTest, NotifyStartupCompleteCallsDispose) { PCWSTR expected = L"test"; PipeOutputManager* pManager = new PipeOutputManager(); ASSERT_EQ(S_OK, pManager->Start()); pManager->NotifyStartupComplete(); // Test will fail if we didn't redirect stdout back to a file descriptor. // This is because gtest relies on console output to know if a test succeeded or failed. // If the output still points to a file/pipe, the test (and all other tests after it) will fail. } }