chromium/content/common/input/actions_parser_test_driver_unittest.cc

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

#include "content/common/input/actions_parser.h"

#include <utility>

#include "base/json/json_reader.h"
#include "content/common/input/synthetic_smooth_scroll_gesture_params.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace content {

TEST(ActionsParserTestDriverTest, ParseMousePointerActionSequence) {}

TEST(ActionsParserTestDriverTest, ParseTouchPointerActionSequence) {}

TEST(ActionsParserTestDriverTest, ParseTouchPointerActionSequenceWithPause) {}

TEST(ActionsParserTestDriverTest, ParseTouchPointerActionSequenceIdNotString) {}

TEST(ActionsParserTestDriverTest, ParseTouchPointerActionSequenceDuplicateId) {}

TEST(ActionsParserTestDriverTest, ParseMousePointerActionSequenceNoParameters) {}

TEST(ActionsParserTestDriverTest,
     ParseMousePointerActionSequenceNoPointerType) {}

TEST(ActionsParserTestDriverTest, ParseMousePointerActionSequenceNoAction) {}

TEST(ActionsParserTestDriverTest,
     ParseMousePointerActionSequenceUnsupportedButton) {}

TEST(ActionsParserTestDriverTest,
     ParseTouchPointerActionSequenceMultiActionsType) {}

TEST(ActionsParserTestDriverTest,
     ParseTouchPointerActionSequenceMultiPointerType) {}

TEST(ActionsParserTestDriverTest, ParseTouchPointerActionSequenceMultiMouse) {}

TEST(ActionsParserTestDriverTest, ParseWheelScrollAction) {}

TEST(ActionsParserTestDriverTest, ParseWheelScrollActionNoSourceType) {}

TEST(ActionsParserTestDriverTest, ParseWheelScrollActionInvalidDelta) {}

TEST(ActionsParserTestDriverTest, ParseWheelScrollNoActionType) {}

TEST(ActionsParserTestDriverTest, ParseWheelScrollInvalidActionType) {}

TEST(ActionsParserTestDriverTest, ParseWheelScrollInvalidActionList) {}

TEST(ActionsParserTestDriverTest, ParseMultiInputSource) {}

TEST(ActionsParserTestDriverTest, ParseActionSequenceInvalidInputSourceType) {}

TEST(ActionsParserTestDriverTest, ParseActionSequenceWithoutY) {}

TEST(ActionsParserTestDriverTest, ParseActionSequencePenProperties) {}

TEST(ActionsParserTestDriverTest, ParseActionSequenceInvalidForce) {}

TEST(ActionsParserTestDriverTest, ParseActionSequenceInvalidTiltX) {}

}  // namespace content