#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) { … }
}