Solved
Forum Discussion
Radford
6 years agoSuper Contributor
If you know the property name you should be able to use this code (Note: This is run from a test case teardown script, you need to tweak how you get the project object), just substitute the name of your project property:
def project = testCase.getProject() project.removeProperty('TestProp')
The project object is the class WsdlProject, the removeProperty method is specified by the inherited class AbstractTestPropertyHolderWsdlModelItem.