// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/quic/tools/quic_url.h" #include <string> #include "quiche/quic/platform/api/quic_test.h" namespace quic { namespace test { namespace { class QuicUrlTest : public QuicTest { … }; TEST_F(QuicUrlTest, Basic) { … } TEST_F(QuicUrlTest, DefaultScheme) { … } TEST_F(QuicUrlTest, IsValid) { … } TEST_F(QuicUrlTest, HostPort) { … } TEST_F(QuicUrlTest, PathParamsQuery) { … } } // namespace } // namespace test } // namespace quic