Index: ui/base/animation/animation_unittest.cc |
=================================================================== |
--- ui/base/animation/animation_unittest.cc (revision 152061) |
+++ ui/base/animation/animation_unittest.cc (working copy) |
@@ -143,16 +143,4 @@ |
#endif |
} |
-// Test that current value is always 0 after Start() is called. |
-TEST_F(AnimationTest, StartState) { |
- LinearAnimation animation(100, 60, NULL); |
- EXPECT_EQ(0.0, animation.GetCurrentValue()); |
- animation.Start(); |
- EXPECT_EQ(0.0, animation.GetCurrentValue()); |
- animation.End(); |
- EXPECT_EQ(1.0, animation.GetCurrentValue()); |
- animation.Start(); |
- EXPECT_EQ(0.0, animation.GetCurrentValue()); |
-} |
- |
} // namespace ui |