Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: Source/core/animation/animatable/AnimatableLengthTest.cpp

Issue 363183003: Move Animatable* hierarchy into new folder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "config.h" 5 #include "config.h"
6 6
7 #include "core/animation/AnimatableLength.h" 7 #include "core/animation/animatable/AnimatableLength.h"
8
8 #include "platform/CalculationValue.h" 9 #include "platform/CalculationValue.h"
9 10
10 #include <gtest/gtest.h> 11 #include <gtest/gtest.h>
11 12
12 namespace WebCore { 13 namespace WebCore {
13 14
14 namespace { 15 namespace {
15 16
16 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double zoom = 1) 17 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double zoom = 1)
17 { 18 {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 65
65 TEST(AnimationAnimatableLengthTest, Interpolate) 66 TEST(AnimationAnimatableLengthTest, Interpolate)
66 { 67 {
67 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(10, Fixed)).get(), cr eate(Length(0, Fixed)).get(), 0.2)->equals(create(Length(8, Fixed)).get())); 68 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(10, Fixed)).get(), cr eate(Length(0, Fixed)).get(), 0.2)->equals(create(Length(8, Fixed)).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() )); 69 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(4, Percent)).get(), c reate(Length(12, Percent)).get(), 0.25)->equals(create(Length(6, Percent)).get() ));
69 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value RangeAll)); 70 Length calc = Length(CalculationValue::create(PixelsAndPercent(12, 4), Value RangeAll));
70 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(20, Fixed)).get(), cr eate(Length(10, Percent)).get(), 0.4)->equals(create(calc).get())); 71 EXPECT_TRUE(AnimatableValue::interpolate(create(Length(20, Fixed)).get(), cr eate(Length(10, Percent)).get(), 0.4)->equals(create(calc).get()));
71 } 72 }
72 73
73 } // namespace WebCore 74 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/animation/animatable/AnimatableLengthSize.cpp ('k') | Source/core/animation/animatable/AnimatableNeutral.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698