chromium/third_party/blink/common/input/web_input_event_unittest.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/public/common/input/web_input_event.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/input/web_gesture_event.h"
#include "third_party/blink/public/common/input/web_mouse_wheel_event.h"
#include "third_party/blink/public/common/input/web_pointer_event.h"

namespace blink {

namespace {

WebMouseEvent CreateWebMouseMoveEvent() {}

WebPointerEvent CreateWebPointerMoveEvent() {}

WebTouchEvent CreateWebTouchMoveEvent() {}

}  // namespace

TEST(WebInputEventTest, TouchEventCoalescing) {}

TEST(WebInputEventTest, WebMouseWheelEventCoalescing) {}

TEST(WebInputEventTest, WebGestureEventCoalescing) {}

TEST(WebInputEventTest, GesturePinchUpdateCoalescing) {}

TEST(WebInputEventTest, MouseEventCoalescing) {}

TEST(WebInputEventTest, PointerEventCoalescing) {}

}  // namespace blink