OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/views/animation/ink_drop_hover.h" |
| 6 |
| 7 #include "base/macros.h" |
| 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 #include "ui/compositor/scoped_animation_duration_scale_mode.h" |
| 11 #include "ui/gfx/geometry/size.h" |
| 12 |
| 13 namespace views { |
| 14 namespace test { |
| 15 |
| 16 class InkDropHoverTest : public testing::Test { |
| 17 public: |
| 18 InkDropHoverTest(); |
| 19 ~InkDropHoverTest() override; |
| 20 |
| 21 protected: |
| 22 scoped_ptr<InkDropHover> CreateInkDropHover() const; |
| 23 |
| 24 private: |
| 25 // Enables zero duration animations during the tests. |
| 26 scoped_ptr<ui::ScopedAnimationDurationScaleMode> zero_duration_mode_; |
| 27 |
| 28 DISALLOW_COPY_AND_ASSIGN(InkDropHoverTest); |
| 29 }; |
| 30 |
| 31 InkDropHoverTest::InkDropHoverTest() { |
| 32 zero_duration_mode_.reset(new ui::ScopedAnimationDurationScaleMode( |
| 33 ui::ScopedAnimationDurationScaleMode::ZERO_DURATION)); |
| 34 } |
| 35 |
| 36 InkDropHoverTest::~InkDropHoverTest() {} |
| 37 |
| 38 scoped_ptr<InkDropHover> InkDropHoverTest::CreateInkDropHover() const { |
| 39 return make_scoped_ptr(new InkDropHover(gfx::Size(10, 10), 3)); |
| 40 } |
| 41 |
| 42 TEST_F(InkDropHoverTest, InitialStateAfterConstruction) { |
| 43 scoped_ptr<InkDropHover> ink_drop_hover = CreateInkDropHover(); |
| 44 EXPECT_FALSE(ink_drop_hover->IsVisible()); |
| 45 } |
| 46 |
| 47 TEST_F(InkDropHoverTest, IsHoveredStateTransitions) { |
| 48 scoped_ptr<InkDropHover> ink_drop_hover = CreateInkDropHover(); |
| 49 |
| 50 ink_drop_hover->FadeIn(base::TimeDelta::FromMilliseconds(0)); |
| 51 EXPECT_TRUE(ink_drop_hover->IsVisible()); |
| 52 |
| 53 ink_drop_hover->FadeOut(base::TimeDelta::FromMilliseconds(0)); |
| 54 EXPECT_FALSE(ink_drop_hover->IsVisible()); |
| 55 } |
| 56 |
| 57 } // namespace test |
| 58 } // namespace views |
OLD | NEW |