// // Copyright 2019 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // system_utils_unittest_helper.h: Constants used by the SystemUtils.RunApp unittest #ifndef COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_ #define COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_ namespace { constexpr char kRunAppTestEnvVarName[] = …; constexpr char kRunAppTestEnvVarValue[] = …; constexpr char kRunAppTestStdout[] = …; constexpr char kRunAppTestStderr[] = …; constexpr char kRunAppTestArg1[] = …; constexpr char kRunAppTestArg2[] = …; constexpr char kRunTestSuite[] = …; } // anonymous namespace #endif // COMMON_SYSTEM_UTILS_UNITTEST_HELPER_H_