		stage('Testing-%1') {
            when {
                expression { return shouldRunStage('%1') }
            }
			steps {
				script {
					def tests = [
%2
					]
					for (test in tests) {
						catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
							runLibraryTest(test[0], test[1])
						}
					}
				}
			}
		}