#include "media/base/time_delta_interpolator.h"
#include "base/test/simple_test_tick_clock.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
class TimeDeltaInterpolatorTest : public ::testing::Test { … };
TEST_F(TimeDeltaInterpolatorTest, Created) { … }
TEST_F(TimeDeltaInterpolatorTest, StartInterpolating_NormalSpeed) { … }
TEST_F(TimeDeltaInterpolatorTest, StartInterpolating_DoubleSpeed) { … }
TEST_F(TimeDeltaInterpolatorTest, StartInterpolating_HalfSpeed) { … }
TEST_F(TimeDeltaInterpolatorTest, StartInterpolating_ZeroSpeed) { … }
TEST_F(TimeDeltaInterpolatorTest, StartInterpolating_MultiSpeed) { … }
TEST_F(TimeDeltaInterpolatorTest, StopInterpolating) { … }
TEST_F(TimeDeltaInterpolatorTest, SetBounds_Stopped) { … }
TEST_F(TimeDeltaInterpolatorTest, SetBounds_Started) { … }
TEST_F(TimeDeltaInterpolatorTest, SetUpperBound) { … }
TEST_F(TimeDeltaInterpolatorTest, SetUpperBound_MultipleTimes) { … }
}