chromium/media/base/media_log_unittest.cc

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

#include <sstream>
#include <string>

#include "media/base/media_log.h"
#include "media/base/mock_media_log.h"
#include "testing/gtest/include/gtest/gtest.h"

_;

namespace media {

// Friend class of MediaLog for access to internal constants.
class MediaLogTest : public testing::Test {};

TEST_F(MediaLogTest, EventsAreForwarded) {}

TEST_F(MediaLogTest, EventsAreNotForwardedAfterInvalidate) {}

TEST_F(MediaLogTest, ClonedLogsInhertParentPlayerId) {}

TEST_F(MediaLogTest, DontTruncateShortUrlString) {}

TEST_F(MediaLogTest, TruncateLongUrlStrings) {}

TEST_F(MediaLogTest, PLog) {}

}  // namespace media