OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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/keyboard/keyboard_controller.h" |
| 6 |
| 7 #include "base/utf_string_conversions.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 |
| 10 namespace keyboard { |
| 11 namespace { |
| 12 |
| 13 class KeyboardControllerTest : public testing::Test { |
| 14 public: |
| 15 KeyboardControllerTest() {} |
| 16 virtual ~KeyboardControllerTest() {} |
| 17 |
| 18 private: |
| 19 DISALLOW_COPY_AND_ASSIGN(KeyboardControllerTest); |
| 20 }; |
| 21 |
| 22 } // namespace |
| 23 |
| 24 TEST_F(KeyboardControllerTest, KeyboardSize) { |
| 25 ASSERT_TRUE(false); |
| 26 } |
| 27 |
| 28 } // namespace keyboard |
OLD | NEW |