// Copyright 2023 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/test/test_proto_loader.h" #include "base/files/file_path.h" #include "base/notreached.h" #include "base/path_service.h" #include "base/test/test.pb.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { namespace { base::FilePath GetTestDataRoot() { … } void LoadTestProto(const std::string& proto_text, google::protobuf::MessageLite& proto) { … } } // namespace TEST(TestProtoLoaderTest, LoadProto) { … } } // namespace base