OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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/command_line.h" |
| 6 #include "base/values.h" |
| 7 #include "chrome/browser/extensions/extension_apitest.h" |
| 8 #include "chrome/common/extensions/api/search_engines_private.h" |
| 9 #include "components/keyed_service/core/keyed_service.h" |
| 10 #include "content/public/test/test_utils.h" |
| 11 #include "extensions/common/switches.h" |
| 12 |
| 13 namespace extensions { |
| 14 |
| 15 namespace { |
| 16 |
| 17 class SearchEnginesPrivateApiTest : public ExtensionApiTest { |
| 18 public: |
| 19 SearchEnginesPrivateApiTest() {} |
| 20 ~SearchEnginesPrivateApiTest() override {} |
| 21 |
| 22 void SetUpCommandLine(base::CommandLine* command_line) override { |
| 23 ExtensionApiTest::SetUpCommandLine(command_line); |
| 24 } |
| 25 |
| 26 void SetUpOnMainThread() override { |
| 27 ExtensionApiTest::SetUpOnMainThread(); |
| 28 content::RunAllPendingInMessageLoop(); |
| 29 } |
| 30 |
| 31 protected: |
| 32 bool RunSearchEnginesSubtest(const std::string& subtest) { |
| 33 return RunExtensionSubtest("search_engines_private", |
| 34 "main.html?" + subtest); |
| 35 } |
| 36 |
| 37 private: |
| 38 DISALLOW_COPY_AND_ASSIGN(SearchEnginesPrivateApiTest); |
| 39 }; |
| 40 |
| 41 } // namespace |
| 42 |
| 43 IN_PROC_BROWSER_TEST_F(SearchEnginesPrivateApiTest, SetSelectedSearchEngine) { |
| 44 EXPECT_TRUE(RunSearchEnginesSubtest("setSelectedSearchEngine")) << message_; |
| 45 } |
| 46 |
| 47 } // namespace extensions |
OLD | NEW |