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