// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/public/common/url_utils.h" #include "build/build_config.h" #include "content/public/test/test_utils.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" namespace content { GURL CreateValidURL(const std::string& str) { … } TEST(UrlUtilsTest, HasWebUIScheme) { … } TEST(UrlUtilsTest, IsURLHandledByNetworkStack) { … } TEST(UrlUtilsTest, IsSafeRedirectTarget) { … } } // namespace content