OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/logging.h" | 5 #include "base/logging.h" |
6 #include "chromeos/ime/input_method_property.h" | 6 #include "chromeos/ime/input_method_property.h" |
7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
8 | 8 |
9 namespace chromeos { | 9 namespace chromeos { |
10 namespace input_method { | 10 namespace input_method { |
(...skipping 11 matching lines...) Expand all Loading... |
22 EXPECT_EQ(reference, reference); | 22 EXPECT_EQ(reference, reference); |
23 EXPECT_NE(reference, empty); | 23 EXPECT_NE(reference, empty); |
24 EXPECT_NE(reference, p1); | 24 EXPECT_NE(reference, p1); |
25 EXPECT_NE(reference, p2); | 25 EXPECT_NE(reference, p2); |
26 EXPECT_NE(reference, p3); | 26 EXPECT_NE(reference, p3); |
27 EXPECT_NE(reference, p4); | 27 EXPECT_NE(reference, p4); |
28 } | 28 } |
29 | 29 |
30 } // namespace input_method | 30 } // namespace input_method |
31 } // namespace chromeos | 31 } // namespace chromeos |
OLD | NEW |