// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #define _USE_MATH_DEFINES … #include "ui/gfx/geometry/sin_cos_degrees.h" #include <math.h> #include "testing/gtest/include/gtest/gtest.h" namespace gfx { namespace { TEST(SinCosDegreesTest, ExactValues) { … } TEST(SinCosDegreesTest, CloseToLibc) { … } TEST(SinCosDegreesTest, AccurateRangeReduction) { … } TEST(SinCosDegreesTest, HugeValues) { … } } // namespace } // namespace gfx