Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/angle
Path: blob/main_old/util/test_utils_unittest_helper.h
1693 views
1
//
2
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
3
// Use of this source code is governed by a BSD-style license that can be
4
// found in the LICENSE file.
5
6
// system_utils_unittest_helper.h: Constants used by the SystemUtils.RunApp unittest
7
8
#ifndef COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_
9
#define COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_
10
11
namespace
12
{
13
constexpr char kRunAppTestEnvVarName[] = "RUN_APP_TEST_ENV";
14
constexpr char kRunAppTestEnvVarValue[] = "RunAppTest environment variable value\n";
15
constexpr char kRunAppTestStdout[] = "RunAppTest stdout test\n";
16
constexpr char kRunAppTestStderr[] = "RunAppTest stderr test\n .. that expands multiple lines\n";
17
constexpr char kRunAppTestArg1[] = "--expected-arg1";
18
constexpr char kRunAppTestArg2[] = "expected_arg2";
19
constexpr char kRunTestSuite[] = "--run-test-suite";
20
} // anonymous namespace
21
22
#endif // COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_
23
24