/* * Copyright (c) 2020, Alliance for Open Media. All rights reserved. * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file, you can * obtain it at www.aomedia.org/license/software. If the Alliance for Open * Media Patent License 1.0 was not distributed with this source code in the * PATENTS file, you can obtain it at www.aomedia.org/license/patent. */ #include <string> #include "common/webmenc.h" #include "gtest/gtest.h" namespace { #if CONFIG_WEBM_IO class WebmencTest : public ::testing::Test { … }; // All of these variations on output should be identical. TEST(WebmencTest, ExtractEncoderSettingsOutput1) { … } TEST(WebmencTest, ExtractEncoderSettingsOutput2) { … } TEST(WebmencTest, ExtractEncoderSettingsOutput3) { … } TEST(WebmencTest, ExtractEncoderSettingsInput) { … } #endif // CONFIG_WEBM_IO } // namespace