// Copyright 2024 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/supported_audio_decoder_config.h" #include "media/base/audio_codecs.h" #include "media/base/test_helpers.h" #include "testing/gtest/include/gtest/gtest.h" namespace media { class SupportedAudioDecoderConfigTest : public ::testing::Test { … }; TEST_F(SupportedAudioDecoderConfigTest, ConstructionWithArgs) { … } TEST_F(SupportedAudioDecoderConfigTest, CodecMismatches) { … } TEST_F(SupportedAudioDecoderConfigTest, ProfileMismatches) { … } } // namespace media