// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/quic/quic_chromium_connection_helper.h" #include "net/third_party/quiche/src/quiche/quic/test_tools/mock_clock.h" #include "net/third_party/quiche/src/quiche/quic/test_tools/mock_random.h" #include "testing/gtest/include/gtest/gtest.h" namespace net::test { namespace { class QuicChromiumConnectionHelperTest : public ::testing::Test { … }; TEST_F(QuicChromiumConnectionHelperTest, GetClock) { … } TEST_F(QuicChromiumConnectionHelperTest, GetRandomGenerator) { … } } // namespace } // namespace net::test