#include "third_party/blink/renderer/core/animation/interpolation_effect.h"
#include <memory>
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/animation/animation_test_helpers.h"
#include "third_party/blink/renderer/core/animation/css_number_interpolation_type.h"
#include "third_party/blink/renderer/core/animation/transition_interpolation.h"
#include "third_party/blink/renderer/core/css/css_to_length_conversion_data.h"
#include "third_party/blink/renderer/core/css/properties/longhands.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
namespace blink {
namespace {
double GetInterpolableNumber(Interpolation* value) { … }
Interpolation* CreateInterpolation(int from, int to) { … }
}
TEST(AnimationInterpolationEffectTest, SingleInterpolation) { … }
TEST(AnimationInterpolationEffectTest, MultipleInterpolations) { … }
}