Add mock report when deleting mock
This commit is contained in:
parent
d476478192
commit
0b4f4e0cf8
11 changed files with 224 additions and 26 deletions
22
src/test/groovy/pl/touk/mockserver/client/MockRequest.groovy
Normal file
22
src/test/groovy/pl/touk/mockserver/client/MockRequest.groovy
Normal file
|
@ -0,0 +1,22 @@
|
|||
package pl.touk.mockserver.client
|
||||
|
||||
import groovy.transform.CompileStatic
|
||||
import groovy.transform.EqualsAndHashCode
|
||||
import groovy.transform.TypeChecked
|
||||
|
||||
@CompileStatic
|
||||
@TypeChecked
|
||||
@EqualsAndHashCode
|
||||
class MockRequest {
|
||||
final String text
|
||||
final Map<String, String> headers
|
||||
final Map<String, String> query
|
||||
final List<String> path
|
||||
|
||||
MockRequest(String text, Map<String, String> headers, Map<String, String> query, List<String> path) {
|
||||
this.text = text
|
||||
this.headers = headers
|
||||
this.query = query
|
||||
this.path = path
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue