#include "ui/base/prediction/linear_predictor.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/prediction/input_predictor_unittest_helpers.h"
#include "ui/base/ui_base_features.h"
namespace ui {
namespace test {
class LinearPredictorFirstOrderTest : public InputPredictorTest { … };
class LinearPredictorSecondOrderTest : public InputPredictorTest { … };
TEST_F(LinearPredictorFirstOrderTest, GetName) { … }
TEST_F(LinearPredictorSecondOrderTest, GetName) { … }
TEST_F(LinearPredictorFirstOrderTest, ShouldHavePrediction) { … }
TEST_F(LinearPredictorSecondOrderTest, ShouldHavePrediction) { … }
TEST_F(LinearPredictorFirstOrderTest, PredictedValue) { … }
TEST_F(LinearPredictorSecondOrderTest, PredictedValue) { … }
TEST_F(LinearPredictorSecondOrderTest, ConstantPositionAndVelocity) { … }
TEST_F(LinearPredictorFirstOrderTest, TimeInterval) { … }
TEST_F(LinearPredictorSecondOrderTest, TimeInterval) { … }
}
}