io.restassured.internal.RestAssuredHttpBuilderGroovyHelper.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-assured Show documentation
Show all versions of rest-assured Show documentation
Java DSL for easy testing of REST services
package io.restassured.internal
class RestAssuredHttpBuilderGroovyHelper {
static Collection flattenToString(Collection collection) {
return collection.flatten().collect {
it?.toString()
}
}
static Closure createClosureThatCalls(assertionClosure) {
return { response, content ->
assertionClosure.call(response, content)
}
}
}