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 <string> |
| 6 |
| 7 #include "chrome/browser/extensions/extension_apitest.h" |
| 8 |
| 9 namespace { |
| 10 |
| 11 class NetworkingConfigTest : public ExtensionApiTest { |
| 12 public: |
| 13 NetworkingConfigTest() {} |
| 14 }; |
| 15 |
| 16 } // namespace |
| 17 |
| 18 IN_PROC_BROWSER_TEST_F(NetworkingConfigTest, ApiAvailability) { |
| 19 ASSERT_TRUE(RunExtensionSubtest("networking_config", "api_availability.html")) |
| 20 << message_; |
| 21 } |
| 22 |
| 23 IN_PROC_BROWSER_TEST_F(NetworkingConfigTest, RegisterNetworks) { |
| 24 ASSERT_TRUE( |
| 25 RunExtensionSubtest("networking_config", "register_networks.html")) |
| 26 << message_; |
| 27 } |
OLD | NEW |