chromium/third_party/blink/renderer/modules/webaudio/audio_basic_processor_handler_test.cc

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

#include "third_party/blink/renderer/modules/webaudio/audio_basic_processor_handler.h"

#include <memory>

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/modules/webaudio/offline_audio_context.h"
#include "third_party/blink/renderer/platform/audio/audio_processor.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

namespace {

// Rendering size for these tests.  This is the WebAudio default rendering size.
constexpr unsigned kRenderQuantumFrames =;

}  // namespace

class MockAudioProcessor final : public AudioProcessor {};

class MockProcessorHandler final : public AudioBasicProcessorHandler {};

class MockProcessorNode final : public AudioNode {};

TEST(AudioBasicProcessorHandlerTest, ProcessorFinalization) {}

}  // namespace blink