// 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 "media/muxers/box_byte_stream.h" #include <algorithm> #include <vector> #include "base/containers/span.h" #include "base/containers/span_reader.h" #include "base/test/task_environment.h" #include "testing/gtest/include/gtest/gtest.h" namespace media { enum class DataType { … }; struct DataOrder { … }; TEST(BoxByteStreamTest, Default) { … } TEST(BoxByteStreamTest, GrowLimit) { … } TEST(BoxByteStreamTest, EndBoxAndFlushDiff) { … } TEST(BoxByteStreamTest, OffsetPlaceholderAndFlush) { … } } // namespace media