...
Code Block | ||
---|---|---|
| ||
string issue = "EX-1"; string cfName = "textField"; function getCFValue() { string groovyscript = readFromTextFile("Groovy/getCfValue.groovy"); groovyscript = replace(groovyscript, "issueVAR$issue$", issue); groovyscript = replace(groovyscript, "cfNameVAR$cfName$", cfName); return executeGroovyScript(groovyscript); } runnerLog(getCFValue()); |
...