// 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 "services/video_capture/devices_changed_notifier.h" #include "base/test/task_environment.h" #include "mojo/public/cpp/bindings/receiver.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" namespace { class FakeDevicesChangedObserver : public video_capture::mojom::DevicesChangedObserver { … }; } // namespace namespace video_capture { class DevicesChangedNotifierTest : public testing::Test { … }; TEST_F(DevicesChangedNotifierTest, RegisterObserver) { … } } // namespace video_capture