chromium/third_party/blink/renderer/core/events/pointer_event_util_test.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 <tuple>

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/events/pointer_event_util.h"
#include "third_party/blink/renderer/platform/wtf/math_extras.h"

namespace blink {

class AzimuthInValidRangeWithParameterTests
    : public testing::Test,
      public testing::WithParamInterface<std::tuple<double, double>> {};

class AltitudeInValidRangeWithParameterTests
    : public testing::Test,
      public testing::WithParamInterface<std::tuple<double, double>> {};

class TiltInValidRangeWithParameterTests
    : public testing::Test,
      public testing::WithParamInterface<std::tuple<double, double>> {};

TEST_P(AzimuthInValidRangeWithParameterTests,
       CheckAzimuthTransformedCorrectly) {}

INSTANTIATE_TEST_SUITE_P();

TEST_P(AltitudeInValidRangeWithParameterTests,
       CheckAltitudeTransformedCorrectly) {}

INSTANTIATE_TEST_SUITE_P();

TEST_P(TiltInValidRangeWithParameterTests, CheckTiltTransformedCorrectly) {}

INSTANTIATE_TEST_SUITE_P();
}  // namespace blink