// 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 "ui/gfx/geometry/point_f.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/geometry/point.h" #include "ui/gfx/geometry/point_conversions.h" namespace gfx { TEST(PointFTest, PointToPointF) { … } TEST(PointFTest, IsOrigin) { … } TEST(PointFTest, ToRoundedPoint) { … } TEST(PointFTest, Scale) { … } TEST(PointFTest, SetToMinMax) { … } TEST(PointFTest, IsWithinDistance) { … } TEST(PointFTest, Transpose) { … } TEST(PointFTest, ToString) { … } } // namespace gfx