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

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

Issue 69813008: Web Animations CSS: Renamed tests to be less confusing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « Source/core/animation/CompositorAnimationsTestHelper.h ('k') | Source/core/animation/DocumentTimeline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp
diff --git a/Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp b/Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp
index 41cb48c6bda69626b00d7d6e404078320300cf4d..e1dabdae6c7b4ed9f2ca7bf001f759b1676096b7 100644
--- a/Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp
+++ b/Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp
@@ -48,7 +48,7 @@ namespace {
using namespace WebCore;
-class CoreAnimationCompositorAnimationsTimingFunctionReverserTest : public ::testing::Test {
+class AnimationCompositorAnimationsTimingFunctionReverserTest : public ::testing::Test {
protected:
bool m_enabled;
@@ -71,13 +71,13 @@ public:
}
};
-TEST_F(CoreAnimationCompositorAnimationsTimingFunctionReverserTest, LinearReverse)
+TEST_F(AnimationCompositorAnimationsTimingFunctionReverserTest, LinearReverse)
{
RefPtr<TimingFunction> linearTiming = LinearTimingFunction::create();
EXPECT_REFV_EQ(linearTiming, reverse(linearTiming));
}
-TEST_F(CoreAnimationCompositorAnimationsTimingFunctionReverserTest, CubicReverse)
+TEST_F(AnimationCompositorAnimationsTimingFunctionReverserTest, CubicReverse)
{
RefPtr<TimingFunction> cubicEaseInTiming = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::EaseIn);
RefPtr<TimingFunction> cubicEaseOutTiming = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::EaseOut);
@@ -97,7 +97,7 @@ TEST_F(CoreAnimationCompositorAnimationsTimingFunctionReverserTest, CubicReverse
EXPECT_REFV_EQ(cubicEaseTimingReversed, reverse(cubicEaseTiming));
}
-TEST_F(CoreAnimationCompositorAnimationsTimingFunctionReverserTest, ChainedReverse)
+TEST_F(AnimationCompositorAnimationsTimingFunctionReverserTest, ChainedReverse)
{
RefPtr<TimingFunction> linearTiming = LinearTimingFunction::create();
RefPtr<ChainedTimingFunction> chainedLinearSingle = ChainedTimingFunction::create();
« no previous file with comments | « Source/core/animation/CompositorAnimationsTestHelper.h ('k') | Source/core/animation/DocumentTimeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698