#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) { … }
}