#include "ui/touch_selection/longpress_drag_selector.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/events/test/motion_event_test_utils.h"
MockMotionEvent;
namespace ui {
namespace {
const double kSlop = …;
class LongPressDragSelectorTest : public testing::Test,
public LongPressDragSelectorClient { … };
TEST_F(LongPressDragSelectorTest, BasicDrag) { … }
TEST_F(LongPressDragSelectorTest, DoublePressDrag) { … }
TEST_F(LongPressDragSelectorTest, BasicReverseDrag) { … }
TEST_F(LongPressDragSelectorTest, NoActiveTouch) { … }
TEST_F(LongPressDragSelectorTest, NoLongPress) { … }
TEST_F(LongPressDragSelectorTest, NoValidLongPress) { … }
TEST_F(LongPressDragSelectorTest, NoSelection) { … }
TEST_F(LongPressDragSelectorTest, NoDragMotion) { … }
TEST_F(LongPressDragSelectorTest, SelectionDeactivated) { … }
TEST_F(LongPressDragSelectorTest, DragFast) { … }
TEST_F(LongPressDragSelectorTest, ScrollAfterLongPress) { … }
}
}