}
@Override
protected boolean typeAndOperationMatch(WsdlTestStep testStep, RestMethod target) {
if (testStep instanceof RestTestRequestStep) {
RestTestRequest testRequest = ((RestTestRequestStep) testStep).getTestRequest();
return testRequest != null && testRequest.getRestMethod() != null && testRequest.getRestMethod() == target;
} else {
return false;
}
}