#include "services/audio/device_notifier.h"
#include <memory>
#include <utility>
#include "base/system/system_monitor.h"
#include "base/test/task_environment.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/audio/public/mojom/device_notifications.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace audio {
namespace {
class MockDeviceListener : public mojom::DeviceListener { … };
}
class DeviceNotifierTest : public ::testing::Test { … };
TEST_F(DeviceNotifierTest, DeviceNotifierNotifies) { … }
}