#include "services/audio/user_input_monitor.h"
#include <memory>
#include <utility>
#include "media/base/user_input_monitor.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace audio {
namespace {
constexpr uint32_t kKeyPressCount = …;
}
TEST(AudioServiceUserInputMonitorTest, CreateWithValidHandle) { … }
TEST(AudioServiceUserInputMonitorTest, CreateWithInvalidHandle_ReturnsNullptr) { … }
TEST(AudioServiceUserInputMonitorTest, GetKeyPressCount) { … }
TEST(AudioServiceUserInputMonitorTest, GetKeyPressCountAfterMemoryUnmap) { … }
}