chromium/third_party/blink/renderer/platform/widget/input/prediction/filter_factory_unittests.cc

// 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 "base/test/scoped_feature_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/renderer/platform/widget/input/prediction/filter_factory.h"
#include "ui/base/prediction/one_euro_filter.h"
#include "ui/base/ui_base_features.h"

namespace blink {
namespace test {

namespace {
Feature;
FilterType;
PredictorType;
}  // namespace

class FilterFactoryTest : public testing::Test {};

// Check if the FilterType returned is correct
TEST_F(FilterFactoryTest, TestGetFilterType) {}

TEST_F(FilterFactoryTest, TestCreateFilter) {}

// Test there is no params available for OneEuro filter
TEST_F(FilterFactoryTest, TestOneEuroNoParams) {}

// Test we get the params sent via fieldtrials params
TEST_F(FilterFactoryTest, TestOneEuroParams) {}

}  // namespace test
}  // namespace blink