chromium/third_party/blink/renderer/platform/peerconnection/linear_histogram_test.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/platform/peerconnection/linear_histogram.h"

#include <vector>
#include "testing/gtest/include/gtest/gtest.h"

namespace blink {

namespace {

constexpr float kMinValue =;
constexpr float kMaxValue =;
constexpr wtf_size_t kNumBuckets =;

class LinearHistogramTest : public ::testing::Test {};

TEST_F(LinearHistogramTest, NumValues) {}

TEST_F(LinearHistogramTest, ReturnsCorrectPercentiles) {}

TEST_F(LinearHistogramTest, UnderflowReturnsHistogramMinValue) {}

TEST_F(LinearHistogramTest, OverflowReturnsMaximumObservedValue) {}

}  // namespace
}  // namespace blink