// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cast/streaming/public/statistics.h" #include "gtest/gtest.h" #include "util/std_util.h" namespace openscreen::cast { class StatisticsTest : public testing::Test { … }; TEST_F(StatisticsTest, SimpleHistogramSamples) { … } TEST_F(StatisticsTest, SimpleHistogramCopy) { … } TEST_F(StatisticsTest, SimpleHistogramSerialization) { … } } // namespace openscreen::cast