OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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 "chrome/browser/extensions/extension_apitest.h" |
| 7 #include "chrome/common/chrome_switches.h" |
| 8 #include "net/base/mock_host_resolver.h" |
| 9 |
| 10 class ExtensionSettingsApiTest : public ExtensionApiTest { |
| 11 }; |
| 12 |
| 13 IN_PROC_BROWSER_TEST_F(ExtensionSettingsApiTest, Settings) { |
| 14 CommandLine::ForCurrentProcess()->AppendSwitch( |
| 15 switches::kEnableExperimentalExtensionApis); |
| 16 ASSERT_TRUE(RunExtensionTest("settings")) << message_; |
| 17 } |
OLD | NEW |