OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "base/base_paths.h" | |
6 #include "base/files/file_path.h" | |
7 #include "base/path_service.h" | |
8 #include "chrome/browser/extensions/extension_apitest.h" | |
9 | |
10 class LibLouisWrapperTest : public ExtensionApiTest { | |
11 }; | |
12 | |
13 IN_PROC_BROWSER_TEST_F(LibLouisWrapperTest, LibLouisLoad) { | |
14 ASSERT_TRUE(PathService::Get(base::DIR_EXE, &test_data_dir_)); | |
15 test_data_dir_ = test_data_dir_.AppendASCII("chromevox_test_data"); | |
16 LOG(ERROR) << "Test data dir: " << test_data_dir_.MaybeAsASCII(); | |
17 ASSERT_TRUE(RunExtensionTest("braille")) << message_; | |
18 } | |
OLD | NEW |