| Index: chrome/browser/chromeos/input_method/ibus_controller_unittest.cc
|
| diff --git a/chrome/browser/chromeos/input_method/ibus_controller_unittest.cc b/chrome/browser/chromeos/input_method/ibus_controller_unittest.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1da1e1ae3d2480d28bd27c533a15a5ea5a91c4a7
|
| --- /dev/null
|
| +++ b/chrome/browser/chromeos/input_method/ibus_controller_unittest.cc
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "base/logging.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| +#include "chrome/browser/chromeos/input_method/ibus_controller.h"
|
| +#include "testing/gtest/include/gtest/gtest.h"
|
| +
|
| +namespace chromeos {
|
| +namespace input_method {
|
| +
|
| +TEST(IBusControllerTest, TestCreate) {
|
| + scoped_ptr<IBusController> controller(IBusController::Create());
|
| + EXPECT_TRUE(controller.get());
|
| +}
|
| +
|
| +} // namespace input_method
|
| +} // namespace chromeos
|
|
|