chromium/media/base/audio_bus_pool_unittest.cc

// Copyright 2022 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/base/audio_bus_pool.h"

#include <memory>
#include <utility>

#include "base/test/bind.h"
#include "media/base/audio_bus.h"
#include "media/base/audio_parameters.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

// The test fixture.
class AudioBusPoolTest : public ::testing::Test {};

TEST_F(AudioBusPoolTest, PublicConstructor) {}

TEST_F(AudioBusPoolTest, ReuseAudioBusesInLifoOrder) {}

TEST_F(AudioBusPoolTest, Preallocate) {}

TEST_F(AudioBusPoolTest, MaxCapacity) {}

}  // namespace media