That`s a great Idea,
I have one more question if some one can answers that would be of great help for me
Considering soap-assertion.groovy class file
shell.evaluate(new File("target/test-classes/shared/soap-assertion.groovy").text)
when I run this, this code runs only whatever there is within
public static void main(String[] args) { }
Suppose if I have few methods in the soap-assertion.groovy class file and I want to call one of them at a time and also by passing parameters to methods and capturing the return values from them, How would I will be able to achieve it?
Thanks in Advance