// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/common/error_utils.h" #include <string_view> #include "base/strings/utf_string_conversions.h" #include "testing/gtest/include/gtest/gtest.h" namespace extensions { namespace { // Tests ErrorUtils::FormatErrorMessage which takes two placeholders. TEST(ErrorUtils, FormatErrorMessage_Success) { … } #if defined(GTEST_HAS_DEATH_TEST) // Tests that we raise an error if the number of placeholders and substitution // arguments are not equal. TEST(ErrorUtils, FormatErrorMessage_Death) { … } #endif // defined(GTEST_HAS_DEATH_TEST) } // namespace } // namespace extensions