All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.restassured.internal.RestAssuredHttpBuilderGroovyHelper.groovy Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
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)
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy