#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include <stdint.h>
#include <memory>
#include "base/time/time.h"
#include "media/base/audio_block_fifo.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
class AudioBlockFifoTest : public testing::Test { … };
TEST_F(AudioBlockFifoTest, Construct) { … }
TEST_F(AudioBlockFifoTest, Push) { … }
TEST_F(AudioBlockFifoTest, PushAndConsume) { … }
TEST_F(AudioBlockFifoTest, PushAndConsumeOneBlockFifo) { … }
TEST_F(AudioBlockFifoTest, PushAndConsumeSilence) { … }
TEST_F(AudioBlockFifoTest, DynamicallyIncreaseCapacity) { … }
}