@isTest
global class NCWebServiceMock implements WebServiceMock {
global void doInvoke(
Object stub,
Object request,
Map<String, Object> response,
String endpoint,
String soapAction,
String requestName,
String responseNS,
String responseName,
String responseType) {
NCwebserviceserver.sendToWISEResponse_element prothttp = new NCwebserviceserver.sendToWISEResponse_element();
prothttp.return_x = '[{"Errno":"0","Errmsg":"保存成功","Billcode":"SSGM01000021"}]';
response.put('response_x', prothttp);
}
}