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

Unified Diff: Source/core/animation/AnimationClockTest.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
Index: Source/core/animation/AnimationClockTest.cpp
diff --git a/Source/core/animation/AnimationClockTest.cpp b/Source/core/animation/AnimationClockTest.cpp
index ef28f2825af7194af54441a67146a22efc826fd7..248da7badee6ce73eaeed5f7465cf760c1249c03 100644
--- a/Source/core/animation/AnimationClockTest.cpp
+++ b/Source/core/animation/AnimationClockTest.cpp
@@ -38,7 +38,7 @@ using namespace WebCore;
namespace {
-class CoreAnimationAnimationClockTest : public ::testing::Test {
+class AnimationAnimationClockTest : public ::testing::Test {
protected:
virtual void SetUp()
{
@@ -55,9 +55,9 @@ protected:
OwnPtr<AnimationClock> animationClock;
};
-double CoreAnimationAnimationClockTest::mockTime;
+double AnimationAnimationClockTest::mockTime;
-TEST_F(CoreAnimationAnimationClockTest, CurrentTime)
+TEST_F(AnimationAnimationClockTest, CurrentTime)
{
EXPECT_EQ(200, animationClock->currentTime());
EXPECT_EQ(200, animationClock->currentTime());
@@ -66,7 +66,7 @@ TEST_F(CoreAnimationAnimationClockTest, CurrentTime)
EXPECT_EQ(201, animationClock->currentTime());
}
-TEST_F(CoreAnimationAnimationClockTest, UpdateTime)
+TEST_F(AnimationAnimationClockTest, UpdateTime)
{
animationClock->updateTime(100);
EXPECT_EQ(100, animationClock->currentTime());
« no previous file with comments | « Source/core/animation/AnimatableValueTestHelperTest.cpp ('k') | Source/core/animation/CompositorAnimationsImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698