| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sky/engine/config.h" | |
| 6 | 5 |
| 7 #include "sky/engine/core/animation/animatable/AnimatableLength.h" | 6 #include "sky/engine/core/animation/animatable/AnimatableLength.h" |
| 8 | 7 |
| 9 #include "sky/engine/platform/CalculationValue.h" | 8 #include "sky/engine/platform/CalculationValue.h" |
| 10 | 9 |
| 11 #include <gtest/gtest.h> | 10 #include <gtest/gtest.h> |
| 12 | 11 |
| 13 namespace blink { | 12 namespace blink { |
| 14 | 13 |
| 15 namespace { | 14 namespace { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 64 |
| 66 TEST(AnimationAnimatableLengthTest, Interpolate) | 65 TEST(AnimationAnimatableLengthTest, Interpolate) |
| 67 { | 66 { |
| 68 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(10, Fixed)).get(), cr
eate(Length(0, Fixed)).get(), 0.2)->equals(create(Length(8, Fixed)).get())); | 67 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(10, Fixed)).get(), cr
eate(Length(0, Fixed)).get(), 0.2)->equals(create(Length(8, Fixed)).get())); |
| 69 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(4, Percent)).get(), c
reate(Length(12, Percent)).get(), 0.25)->equals(create(Length(6, Percent)).get()
)); | 68 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(4, Percent)).get(), c
reate(Length(12, Percent)).get(), 0.25)->equals(create(Length(6, Percent)).get()
)); |
| 70 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value
RangeAll)); | 69 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value
RangeAll)); |
| 71 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(20, Fixed)).get(), cr
eate(Length(10, Percent)).get(), 0.4)->equals(create(calc).get())); | 70 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(20, Fixed)).get(), cr
eate(Length(10, Percent)).get(), 0.4)->equals(create(calc).get())); |
| 72 } | 71 } |
| 73 | 72 |
| 74 } // namespace blink | 73 } // namespace blink |
| OLD | NEW |