| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/ime/input_method_menu_item.h" | |
| 6 | |
| 7 #include "base/logging.h" | 5 #include "base/logging.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 6 #include "testing/gtest/include/gtest/gtest.h" |
| 7 #include "ui/chromeos/ime/input_method_menu_item.h" |
| 9 | 8 |
| 10 namespace ash { | 9 namespace ui { |
| 11 namespace ime { | 10 namespace ime { |
| 12 | 11 |
| 13 TEST(InputMethodMenuItemTest, TestOperatorEqual) { | 12 TEST(InputMethodMenuItemTest, TestOperatorEqual) { |
| 14 InputMethodMenuItem empty; | 13 InputMethodMenuItem empty; |
| 15 InputMethodMenuItem reference("key", "label", true, true); | 14 InputMethodMenuItem reference("key", "label", true, true); |
| 16 | 15 |
| 17 InputMethodMenuItem p1("X", "label", true, true); | 16 InputMethodMenuItem p1("X", "label", true, true); |
| 18 InputMethodMenuItem p2("key", "X", true, true); | 17 InputMethodMenuItem p2("key", "X", true, true); |
| 19 InputMethodMenuItem p3("key", "label", false, true); | 18 InputMethodMenuItem p3("key", "label", false, true); |
| 20 InputMethodMenuItem p4("key", "label", true, false); | 19 InputMethodMenuItem p4("key", "label", true, false); |
| 21 | 20 |
| 22 EXPECT_EQ(empty, empty); | 21 EXPECT_EQ(empty, empty); |
| 23 EXPECT_EQ(reference, reference); | 22 EXPECT_EQ(reference, reference); |
| 24 EXPECT_NE(reference, empty); | 23 EXPECT_NE(reference, empty); |
| 25 EXPECT_NE(reference, p1); | 24 EXPECT_NE(reference, p1); |
| 26 EXPECT_NE(reference, p2); | 25 EXPECT_NE(reference, p2); |
| 27 EXPECT_NE(reference, p3); | 26 EXPECT_NE(reference, p3); |
| 28 EXPECT_NE(reference, p4); | 27 EXPECT_NE(reference, p4); |
| 29 } | 28 } |
| 30 | 29 |
| 31 } // namespace ime | 30 } // namespace ime |
| 32 } // namespace ash | 31 } // namespace ui |
| OLD | NEW |