// 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 "chrome/browser/media/router/logger_list.h" #include "base/json/json_reader.h" #include "content/public/test/browser_task_environment.h" #include "testing/gtest/include/gtest/gtest.h" namespace media_router { class LoggerListTest : public testing::Test { … }; TEST_F(LoggerListTest, AddingAndRemovingLoggers) { … } TEST_F(LoggerListTest, Log) { … } } // namespace media_router