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

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

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Resize expect size of Persistent Created 5 years, 7 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 /* 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 21 matching lines...) Expand all
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 using namespace blink;
37 37
38 namespace { 38 namespace {
39 39
40 TEST(AnimationAnimatableDoubleTest, Create) 40 TEST(AnimationAnimatableDoubleTest, Create)
41 { 41 {
42 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(5).get())); 42 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(5)));
43 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(10).get())); 43 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(10)));
44 } 44 }
45 45
46 TEST(AnimationAnimatableDoubleTest, Equal) 46 TEST(AnimationAnimatableDoubleTest, Equal)
47 { 47 {
48 EXPECT_TRUE(AnimatableDouble::create(10)->equals(AnimatableDouble::create(10 ).get())); 48 EXPECT_TRUE(AnimatableDouble::create(10)->equals(AnimatableDouble::create(10 )));
49 EXPECT_FALSE(AnimatableDouble::create(5)->equals(AnimatableDouble::create(10 ).get())); 49 EXPECT_FALSE(AnimatableDouble::create(5)->equals(AnimatableDouble::create(10 )));
50 } 50 }
51 51
52 TEST(AnimationAnimatableDoubleTest, ToDouble) 52 TEST(AnimationAnimatableDoubleTest, ToDouble)
53 { 53 {
54 EXPECT_EQ(5.9, AnimatableDouble::create(5.9)->toDouble()); 54 EXPECT_EQ(5.9, AnimatableDouble::create(5.9)->toDouble());
55 EXPECT_EQ(-10, AnimatableDouble::create(-10)->toDouble()); 55 EXPECT_EQ(-10, AnimatableDouble::create(-10)->toDouble());
56 } 56 }
57 57
58 58
59 TEST(AnimationAnimatableDoubleTest, Interpolate) 59 TEST(AnimationAnimatableDoubleTest, Interpolate)
60 { 60 {
61 RefPtrWillBeRawPtr<AnimatableDouble> from10 = AnimatableDouble::create(10); 61 AnimatableDouble* from10 = AnimatableDouble::create(10);
62 RefPtrWillBeRawPtr<AnimatableDouble> to20 = AnimatableDouble::create(20); 62 AnimatableDouble* to20 = AnimatableDouble::create(20);
63 EXPECT_EQ(5, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), t o20.get(), -0.5).get())->toDouble()); 63 EXPECT_EQ(5, toAnimatableDouble(AnimatableValue::interpolate(from10, to20, - 0.5))->toDouble());
64 EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), to20.get(), 0).get())->toDouble()); 64 EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::interpolate(from10, to20, 0))->toDouble());
65 EXPECT_EQ(14, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), to20.get(), 0.4).get())->toDouble()); 65 EXPECT_EQ(14, toAnimatableDouble(AnimatableValue::interpolate(from10, to20, 0.4))->toDouble());
66 EXPECT_EQ(15, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), to20.get(), 0.5).get())->toDouble()); 66 EXPECT_EQ(15, toAnimatableDouble(AnimatableValue::interpolate(from10, to20, 0.5))->toDouble());
67 EXPECT_EQ(16, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), to20.get(), 0.6).get())->toDouble()); 67 EXPECT_EQ(16, toAnimatableDouble(AnimatableValue::interpolate(from10, to20, 0.6))->toDouble());
68 EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), to20.get(), 1).get())->toDouble()); 68 EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::interpolate(from10, to20, 1))->toDouble());
69 EXPECT_EQ(25, toAnimatableDouble(AnimatableValue::interpolate(from10.get(), to20.get(), 1.5).get())->toDouble()); 69 EXPECT_EQ(25, toAnimatableDouble(AnimatableValue::interpolate(from10, to20, 1.5))->toDouble());
70 } 70 }
71 71
72 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698