// Copyright 2019 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/base/prediction/one_euro_filter.h" #include "base/rand_util.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/prediction/prediction_unittest_helpers.h" namespace ui { namespace test { class OneEuroFilterTest : public testing::Test { … }; // Check if sending values between 0 and 1 keeps filtered values between 0 and 1 TEST_F(OneEuroFilterTest, filteringValues) { … } } // namespace test } // namespace ui