public WsdlTestStep insertTestStep(TestStepConfig stepConfig, int ix) {
return insertTestStep(stepConfig, ix, true);
}
public WsdlTestStep insertTestStep(TestStepConfig stepConfig, int ix, boolean clearIds) {
TestStepConfig newStepConfig = ix == -1 ? getConfig().addNewTestStep() : getConfig().insertNewTestStep(ix);
newStepConfig.set(stepConfig);
WsdlTestStep testStep = createTestStepFromConfig(newStepConfig);
if (!ensureUniqueName(testStep)) {
testStep.release();
getConfig().getTestStepList().remove(newStepConfig);