我正在使用 HP ALM v 5.2 并通过从 gui 制作自由样式项目来上传我的测试结果现在我想将此步骤添加到管道中,我在互联网上搜索并找到了本指南,但给了我这个错误,但no known implementation of interface jenkins.tasks.SimpleBuildStep is named TestResultToALMUploade
有很多例外是代码示例
junit testResults: '**/target/*-reports/TEST-*.xml', allowEmptyResults: true
step ([$class: 'TestResultToALMUploader',
almServerName: 'HP ALM Server', //almServerName
credentialsId: 'ALM-CREDENTIALS',
almDomain: 'ALMDomain', // almDomain
almProject: 'AlmProject', //almProject,
testingFramework: 'JUnit', //testingFramework
testingTool: '', //testingTool
almTestFolder: 'TestHPALM', //almTestFolder
almTestSetFolder: 'TestHPALM', //almTestSetFolder
almTimeout: '-1', //almTimeout
testingResultFile: "**/junitResult.xml", //testingResultFile
jenkinsServerUrl: '' //jenkinsServerUrl
])