1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge pull request #26987 from mshabunin:fix-videoio-test-params-5

videoio: print test params instead of indexes (5.x) #26987

Port of #26948 to 5.x
This commit is contained in:
Maksim Shabunin
2025-03-01 14:59:06 +03:00
committed by GitHub
parent 1483504702
commit b8a8b9e1dd
7 changed files with 205 additions and 20 deletions
+8 -1
View File
@@ -80,7 +80,14 @@ static cv::VideoCaptureAPIs supported_backends[] = {
CAP_FFMPEG
};
INSTANTIATE_TEST_CASE_P(videoio, VideoCaptureAPITests, testing::ValuesIn(supported_backends));
inline static std::string VideoCaptureAPITests_name_printer(const testing::TestParamInfo<VideoCaptureAPITests::ParamType>& info)
{
std::ostringstream out;
out << getBackendNameSafe(info.param);
return out.str();
}
INSTANTIATE_TEST_CASE_P(videoio, VideoCaptureAPITests, testing::ValuesIn(supported_backends), VideoCaptureAPITests_name_printer);
#endif // WIN32