create_peerconnection_quality_test_fixture.cc (1503B)
1 /* 2 * Copyright (c) 2019 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #include "api/test/create_peerconnection_quality_test_fixture.h" 12 13 #include <memory> 14 #include <string> 15 #include <utility> 16 17 #include "api/test/audio_quality_analyzer_interface.h" 18 #include "api/test/metrics/global_metrics_logger_and_exporter.h" 19 #include "api/test/peerconnection_quality_test_fixture.h" 20 #include "api/test/time_controller.h" 21 #include "api/test/video_quality_analyzer_interface.h" 22 #include "test/pc/e2e/peer_connection_quality_test.h" 23 24 namespace webrtc { 25 namespace webrtc_pc_e2e { 26 27 std::unique_ptr<PeerConnectionE2EQualityTestFixture> 28 CreatePeerConnectionE2EQualityTestFixture( 29 std::string test_case_name, 30 TimeController& time_controller, 31 std::unique_ptr<AudioQualityAnalyzerInterface> audio_quality_analyzer, 32 std::unique_ptr<VideoQualityAnalyzerInterface> video_quality_analyzer) { 33 return std::make_unique<PeerConnectionE2EQualityTest>( 34 std::move(test_case_name), time_controller, 35 std::move(audio_quality_analyzer), std::move(video_quality_analyzer), 36 test::GetGlobalMetricsLogger()); 37 } 38 39 } // namespace webrtc_pc_e2e 40 } // namespace webrtc