// Copyright (c) 2014 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/core/congestion_control/prr_sender.h" #include <algorithm> #include "quiche/quic/core/crypto/crypto_protocol.h" #include "quiche/quic/core/quic_constants.h" #include "quiche/quic/platform/api/quic_test.h" namespace quic { namespace test { namespace { // Constant based on TCP defaults. const QuicByteCount kMaxSegmentSize = …; } // namespace class PrrSenderTest : public QuicTest { … }; TEST_F(PrrSenderTest, SingleLossResultsInSendOnEveryOtherAck) { … } TEST_F(PrrSenderTest, BurstLossResultsInSlowStart) { … } } // namespace test } // namespace quic