Hello,
I used this script to add properties to project ( groovy test step ):
def testCase = context.testCase
def project = testCase.testSuite.project
def n = Integer.parseInt(testCase.properties["N"].value)
for( int i = 0; i < n ; i++ ) {
project.setPropertyValue("N${i}".toString(), i.toString())
}
and this to remove them all ( project save script, I think you put your script there too ):
def project = context.testCase.testSuite.project
def propertyNames = project.getPropertyNames()
for( name in propertyNames )
project.removeProperty(name)
This is working without any issues. Can tell me what soapUI you are using( I know it is 4.5, please check Help->About )?
robert