// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/files/file_error_or.h" #include "base/test/gmock_expected_support.h" #include "base/types/expected.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { namespace { TEST(FileErrorOrDeathTest, Error) { … } TEST(FileErrorOrDeathTest, Value) { … } TEST(FileErrorOrDeathTest, ConstValue) { … } } // namespace } // namespace base