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

Unified Diff: Source/core/animation/AnimatableUnknownTest.cpp

Issue 27664002: Web Animations: Regularise unit test names (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to head Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/animation/AnimatableUnknownTest.cpp
diff --git a/Source/core/animation/AnimatableUnknownTest.cpp b/Source/core/animation/AnimatableUnknownTest.cpp
index 60557e406f55b1a1990334cc11a3a09591856d8b..2407300dd8ca47bdc06e446c53590c334f133191 100644
--- a/Source/core/animation/AnimatableUnknownTest.cpp
+++ b/Source/core/animation/AnimatableUnknownTest.cpp
@@ -40,7 +40,7 @@ using namespace WebCore;
namespace {
-class AnimatableUnknownTest : public ::testing::Test {
+class CoreAnimationAnimatableUnknownTest : public ::testing::Test {
protected:
virtual void SetUp()
{
@@ -58,17 +58,17 @@ protected:
RefPtr<AnimatableValue> otherAnimatableUnknown;
};
-TEST_F(AnimatableUnknownTest, Create)
+TEST_F(CoreAnimationAnimatableUnknownTest, Create)
{
EXPECT_TRUE(animatableUnknown);
}
-TEST_F(AnimatableUnknownTest, ToCSSValue)
+TEST_F(CoreAnimationAnimatableUnknownTest, ToCSSValue)
{
EXPECT_EQ(cssValue, toAnimatableUnknown(animatableUnknown.get())->toCSSValue());
}
-TEST_F(AnimatableUnknownTest, Interpolate)
+TEST_F(CoreAnimationAnimatableUnknownTest, Interpolate)
{
EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0).get())->toCSSValue());
EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0.4).get())->toCSSValue());
@@ -83,7 +83,7 @@ TEST_F(AnimatableUnknownTest, Interpolate)
EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown.get(), 1).get())->toCSSValue());
}
-TEST_F(AnimatableUnknownTest, Add)
+TEST_F(CoreAnimationAnimatableUnknownTest, Add)
{
EXPECT_EQ(otherCSSValue, toAnimatableUnknown(AnimatableValue::add(animatableUnknown.get(), otherAnimatableUnknown.get()).get())->toCSSValue());
EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::add(otherAnimatableUnknown.get(), animatableUnknown.get()).get())->toCSSValue());
« no previous file with comments | « Source/core/animation/AnimatableNeutralTest.cpp ('k') | Source/core/animation/AnimatableValueTestHelperTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698