// Copyright 2015 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/rtp_time.h" #include <chrono> #include "gtest/gtest.h" #include "util/chrono_helpers.h" namespace openscreen::cast { // Tests that conversions between std::chrono durations and RtpTimeDelta are // accurate. Note that this implicitly tests the conversions to/from // RtpTimeTicks as well due to shared implementation. TEST(RtpTimeDeltaTest, ConversionToAndFromDurations) { … } } // namespace openscreen::cast