(url: string, response: MockResponse)
| 43 | |
| 44 | // testing methods |
| 45 | addGetMockResponse(url: string, response: MockResponse): void { |
| 46 | this.getMockResponses.set(url, response); |
| 47 | } |
| 48 | addPostMockResponse(url: string, response: MockResponse): void { |
| 49 | this.postMockResponses.set(url, response); |
| 50 | } |
no test coverage detected