aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/unit_tests/shared/test_data.hpp
blob: 1c8316a5d9faca9e1f30f281e031d5355e19057d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// 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 <string>

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