| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "core/animation/animatable/AnimatableDouble.h" | 32 #include "core/animation/animatable/AnimatableDouble.h" |
| 33 | 33 |
| 34 #include <gtest/gtest.h> | 34 #include <gtest/gtest.h> |
| 35 | 35 |
| 36 using namespace blink; | 36 namespace blink { |
| 37 | |
| 38 namespace { | |
| 39 | 37 |
| 40 TEST(AnimationAnimatableDoubleTest, Create) | 38 TEST(AnimationAnimatableDoubleTest, Create) |
| 41 { | 39 { |
| 42 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(5).get())); | 40 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(5).get())); |
| 43 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(10).get())); | 41 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(10).get())); |
| 44 } | 42 } |
| 45 | 43 |
| 46 TEST(AnimationAnimatableDoubleTest, Equal) | 44 TEST(AnimationAnimatableDoubleTest, Equal) |
| 47 { | 45 { |
| 48 EXPECT_TRUE(AnimatableDouble::create(10)->equals(AnimatableDouble::create(10
).get())); | 46 EXPECT_TRUE(AnimatableDouble::create(10)->equals(AnimatableDouble::create(10
).get())); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 62 RefPtrWillBeRawPtr<AnimatableDouble> to20 = AnimatableDouble::create(20); | 60 RefPtrWillBeRawPtr<AnimatableDouble> to20 = AnimatableDouble::create(20); |
| 63 EXPECT_EQ(5, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), t
o20.get(), -0.5).get())->toDouble()); | 61 EXPECT_EQ(5, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), t
o20.get(), -0.5).get())->toDouble()); |
| 64 EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0).get())->toDouble()); | 62 EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0).get())->toDouble()); |
| 65 EXPECT_EQ(14, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.4).get())->toDouble()); | 63 EXPECT_EQ(14, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.4).get())->toDouble()); |
| 66 EXPECT_EQ(15, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.5).get())->toDouble()); | 64 EXPECT_EQ(15, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.5).get())->toDouble()); |
| 67 EXPECT_EQ(16, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.6).get())->toDouble()); | 65 EXPECT_EQ(16, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 0.6).get())->toDouble()); |
| 68 EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1).get())->toDouble()); | 66 EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1).get())->toDouble()); |
| 69 EXPECT_EQ(25, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1.5).get())->toDouble()); | 67 EXPECT_EQ(25, toAnimatableDouble(AnimatableValue::interpolate(from10.get(),
to20.get(), 1.5).get())->toDouble()); |
| 70 } | 68 } |
| 71 | 69 |
| 72 } | 70 } // namespace blink |
| OLD | NEW |