queueResponse method
Implementation
void queueResponse(IntegrationTestHttpResponse response) {
final key = getMapKey(response.path, response.ignoreQuery, response.method);
_queuedResponses.putIfAbsent(key, () => []).add(response);
}
void queueResponse(IntegrationTestHttpResponse response) {
final key = getMapKey(response.path, response.ignoreQuery, response.method);
_queuedResponses.putIfAbsent(key, () => []).add(response);
}