chromium/net/third_party/quiche/src/quiche/quic/core/congestion_control/rtt_stats_test.cc

// Copyright 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/rtt_stats.h"

#include <cmath>
#include <vector>

#include "quiche/quic/platform/api/quic_test.h"
#include "quiche/quic/test_tools/quic_test_utils.h"

Message;

namespace quic {
namespace test {

class RttStatsTest : public QuicTest {};

TEST_F(RttStatsTest, DefaultsBeforeUpdate) {}

TEST_F(RttStatsTest, SmoothedRtt) {}

// Ensure that the potential rounding artifacts in EWMA calculation do not cause
// the SRTT to drift too far from the exact value.
TEST_F(RttStatsTest, SmoothedRttStability) {}

TEST_F(RttStatsTest, PreviousSmoothedRtt) {}

TEST_F(RttStatsTest, MinRtt) {}

TEST_F(RttStatsTest, ExpireSmoothedMetrics) {}

TEST_F(RttStatsTest, UpdateRttWithBadSendDeltas) {}

TEST_F(RttStatsTest, ResetAfterConnectionMigrations) {}

TEST_F(RttStatsTest, StandardDeviationCalculatorTest1) {}

TEST_F(RttStatsTest, StandardDeviationCalculatorTest2) {}

TEST_F(RttStatsTest, StandardDeviationCalculatorTest3) {}

}  // namespace test
}  // namespace quic