#include "cast/streaming/impl/clock_offset_estimator_impl.h"
#include <stdint.h>
#include <memory>
#include <utility>
#include "gtest/gtest.h"
#include "platform/base/trivial_clock_traits.h"
#include "platform/test/fake_clock.h"
#include "util/chrono_helpers.h"
namespace openscreen::cast {
class ClockOffsetEstimatorImplTest : public ::testing::Test { … };
TEST_F(ClockOffsetEstimatorImplTest, EstimateOffset) { … }
TEST_F(ClockOffsetEstimatorImplTest, EventCArrivesBeforeEventB) { … }
TEST_F(ClockOffsetEstimatorImplTest, MultipleIterations) { … }
}