Skip to content

Instantly share code, notes, and snippets.

@nmrao
nmrao / librarysample.groovy
Last active July 1, 2021 15:07
Passing arguments to class from Soapui groovy step
//Define the class in library
class Mylibrary {
def context
def log
//Shows the test case name
def showDetails() {
log.info context.testCase.name
}