Path: blob/main_old/util/test_utils_unittest_helper.h
1693 views
//1// Copyright 2019 The ANGLE Project Authors. All rights reserved.2// Use of this source code is governed by a BSD-style license that can be3// found in the LICENSE file.45// system_utils_unittest_helper.h: Constants used by the SystemUtils.RunApp unittest67#ifndef COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_8#define COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_910namespace11{12constexpr char kRunAppTestEnvVarName[] = "RUN_APP_TEST_ENV";13constexpr char kRunAppTestEnvVarValue[] = "RunAppTest environment variable value\n";14constexpr char kRunAppTestStdout[] = "RunAppTest stdout test\n";15constexpr char kRunAppTestStderr[] = "RunAppTest stderr test\n .. that expands multiple lines\n";16constexpr char kRunAppTestArg1[] = "--expected-arg1";17constexpr char kRunAppTestArg2[] = "expected_arg2";18constexpr char kRunTestSuite[] = "--run-test-suite";19} // anonymous namespace2021#endif // COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_222324