public static WsdlTestRequestStep makeTestRequestStep() throws SoapUIException {
return new WsdlTestRequestStep(makeTestCase(), TestStepConfig.Factory.newInstance(), false);
}
public static RestTestRequestStep makeRestTestRequestStep() throws Exception {
RestTestRequestStep restTestRequestStep = new RestTestRequestStep(makeTestCase(),
TestStepConfig.Factory.newInstance(), false);
restTestRequestStep.getConfig().setConfig(ModelItemFactory.makeRestRequest().getConfig());
return restTestRequestStep;
}