OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 "chrome/browser/extensions/extension_apitest.h" |
| 6 #include "chrome/test/base/ui_test_utils.h" |
| 7 |
| 8 class LibLouisWrapperTest : public ExtensionApiTest { |
| 9 }; |
| 10 |
| 11 IN_PROC_BROWSER_TEST_F(LibLouisWrapperTest, LibLouisLoad) { |
| 12 ui_test_utils::GetRelativeBuildDirectory(&test_data_dir_); |
| 13 test_data_dir_ = test_data_dir_.AppendASCII("chromevox_test_data"); |
| 14 LOG(ERROR) << "Test data dir: " << test_data_dir_.MaybeAsASCII(); |
| 15 ASSERT_TRUE(RunExtensionTest("braille")) << message_; |
| 16 } |
OLD | NEW |