chromium/media/base/frame_rate_estimator_unittest.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 "media/base/frame_rate_estimator.h"

#include <tuple>

#include "testing/gtest/include/gtest/gtest.h"

namespace media {

FpsPair;

class FrameRateEstimatorTest : public testing::TestWithParam<FpsPair> {};

TEST_P(FrameRateEstimatorTest, NoEstimateInitially) {}

TEST_P(FrameRateEstimatorTest, AverageConvergesThenReset) {}

TEST_P(FrameRateEstimatorTest, DurationJitterIsFine) {}

TEST_P(FrameRateEstimatorTest, AverageDoesntSkew) {}

TEST_P(FrameRateEstimatorTest, ResetAllowsFastConvergence) {}

// Instantiate tests for lots of common frame rates.
INSTANTIATE_TEST_SUITE_P();

}  // namespace media