// Copyright (c) 2020 Egor Tensin // This file is part of the "winapi-common" project. // For details, see https://github.com/egor-tensin/winapi-common. // Distributed under the MIT License. #pragma once #include namespace worker { namespace test_data { static constexpr auto str = "Test output."; inline std::string out() { return "stdout: " + std::string{str}; } inline std::string err() { return "stderr: " + std::string{str}; } } // namespace test_data } // namespace worker