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 <utility> 15 16 #include "api/test/time_controller.h" 17 #include "test/pc/e2e/peer_connection_quality_test.h" 18 19 namespace webrtc { 20 namespace webrtc_pc_e2e { 21 22 std::unique_ptr<PeerConnectionE2EQualityTestFixture> CreatePeerConnectionE2EQualityTestFixture(std::string test_case_name,TimeController & time_controller,std::unique_ptr<AudioQualityAnalyzerInterface> audio_quality_analyzer,std::unique_ptr<VideoQualityAnalyzerInterface> video_quality_analyzer)23CreatePeerConnectionE2EQualityTestFixture( 24 std::string test_case_name, 25 TimeController& time_controller, 26 std::unique_ptr<AudioQualityAnalyzerInterface> audio_quality_analyzer, 27 std::unique_ptr<VideoQualityAnalyzerInterface> video_quality_analyzer) { 28 return std::make_unique<PeerConnectionE2EQualityTest>( 29 std::move(test_case_name), time_controller, 30 std::move(audio_quality_analyzer), std::move(video_quality_analyzer)); 31 } 32 33 } // namespace webrtc_pc_e2e 34 } // namespace webrtc 35