Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(639)

Side by Side Diff: extensions/browser/api/networking_config/networking_config_apitest.cc

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More fixes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698