chromium/media/base/data_buffer_unittest.cc

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

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "media/base/data_buffer.h"

#include <stdint.h>

#include <memory>
#include <utility>

#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

TEST(DataBufferTest, Constructor_ZeroSize) {}

TEST(DataBufferTest, Constructor_NonZeroSize) {}

TEST(DataBufferTest, Constructor_ScopedArray) {}

TEST(DataBufferTest, CopyFrom) {}

TEST(DataBufferTest, CreateEOSBuffer) {}

TEST(DataBufferTest, Timestamp) {}

TEST(DataBufferTest, Duration) {}

TEST(DataBufferTest, ReadingWriting) {}

}  // namespace media