// Copyright 2016 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/test_tools/quic_test_utils.h" #include <string> #include "quiche/quic/platform/api/quic_test.h" namespace quic { namespace test { class QuicTestUtilsTest : public QuicTest { … }; TEST_F(QuicTestUtilsTest, ConnectionId) { … } TEST_F(QuicTestUtilsTest, BasicApproxEq) { … } TEST_F(QuicTestUtilsTest, QuicTimeDelta) { … } TEST_F(QuicTestUtilsTest, QuicBandwidth) { … } // Ensure that SimpleRandom does not change its output for a fixed seed. TEST_F(QuicTestUtilsTest, SimpleRandomStability) { … } // Ensure that the output of SimpleRandom does not depend on the size of the // read calls. TEST_F(QuicTestUtilsTest, SimpleRandomChunks) { … } } // namespace test } // namespace quic