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" | 5 #include "ui/chromeos/ime/input_method_menu_item.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 | 9 |
10 namespace ash { | 10 namespace ui { |
11 namespace ime { | 11 namespace ime { |
12 | 12 |
13 TEST(InputMethodMenuItemTest, TestOperatorEqual) { | 13 TEST(InputMethodMenuItemTest, TestOperatorEqual) { |
14 InputMethodMenuItem empty; | 14 InputMethodMenuItem empty; |
15 InputMethodMenuItem reference("key", "label", true, true); | 15 InputMethodMenuItem reference("key", "label", true, true); |
16 | 16 |
17 InputMethodMenuItem p1("X", "label", true, true); | 17 InputMethodMenuItem p1("X", "label", true, true); |
18 InputMethodMenuItem p2("key", "X", true, true); | 18 InputMethodMenuItem p2("key", "X", true, true); |
19 InputMethodMenuItem p3("key", "label", false, true); | 19 InputMethodMenuItem p3("key", "label", false, true); |
20 InputMethodMenuItem p4("key", "label", true, false); | 20 InputMethodMenuItem p4("key", "label", true, false); |
21 | 21 |
22 EXPECT_EQ(empty, empty); | 22 EXPECT_EQ(empty, empty); |
23 EXPECT_EQ(reference, reference); | 23 EXPECT_EQ(reference, reference); |
24 EXPECT_NE(reference, empty); | 24 EXPECT_NE(reference, empty); |
25 EXPECT_NE(reference, p1); | 25 EXPECT_NE(reference, p1); |
26 EXPECT_NE(reference, p2); | 26 EXPECT_NE(reference, p2); |
27 EXPECT_NE(reference, p3); | 27 EXPECT_NE(reference, p3); |
28 EXPECT_NE(reference, p4); | 28 EXPECT_NE(reference, p4); |
29 } | 29 } |
30 | 30 |
31 } // namespace ime | 31 } // namespace ime |
32 } // namespace ash | 32 } // namespace ui |
OLD | NEW |