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

Side by Side Diff: chrome/browser/extensions/api/networking_config_chromeos_apitest_chromeos.cc

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moved & renamed apitest 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
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698