#include <string_view>
#include "base/test/perf_time_logger.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
#include "url/third_party/mozilla/url_parse.h"
#include "url/url_canon.h"
#include "url/url_canon_stdstring.h"
namespace {
TEST(URLParse, FullURL) { … }
constexpr std::string_view kTypicalUrl1 = …;
constexpr std::string_view kTypicalUrl2 = …;
constexpr std::string_view kTypicalUrl3 = …;
TEST(URLParse, TypicalURLParse) { … }
TEST(URLParse, TypicalURLParseCanon) { … }
TEST(URLParse, TypicalURLParseCanonStdString) { … }
TEST(URLParse, GURL) { … }
}