chromium/third_party/blink/renderer/platform/mediastream/media_stream_audio_processor_options_test.cc

// Copyright 2019 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/platform/mediastream/media_stream_audio_processor_options.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace blink {

TEST(AudioProcessingPropertiesToAudioProcessingSettingsTest,
     DefaultPropertiesAndSettingsMatch) {}

TEST(AudioProcessingPropertiesToAudioProcessingSettingsTest,
     DisableDefaultProperties) {}

TEST(AudioProcessingPropertiesToAudioProcessingSettingsTest,
     AllBrowserPropertiesEnabled) {}

TEST(AudioProcessingPropertiesToAudioProcessingSettingsTest,
     SystemAecDisablesBrowserAec) {}

TEST(AudioProcessingPropertiesToAudioProcessingSettingsTest,
     SystemNsDeactivatesBrowserNs) {}

TEST(AudioProcessingPropertiesToAudioProcessingSettingsTest,
     SystemAgcDeactivatesBrowserAgc) {}

TEST(AudioProcessingPropertiesTest,
     GainControlEnabledReturnsTrueIfBrowserAgcEnabled) {}

TEST(AudioProcessingPropertiesTest,
     GainControlEnabledReturnsTrueIfSystemAgcEnabled) {}

TEST(AudioProcessingPropertiesTest,
     GainControlEnabledReturnsFalseIfAgcDisabled) {}

}  // namespace blink