package
regrest
Type Members
-
case class
Body(contentType: String, charset: String, text: String) extends Product with Serializable
-
case class
RegrestConfig(testsDir: Option[File], resultsDir: Option[File], workingDir: Option[File], testScript: Option[String], reportFile: Option[String], reportFileFormat: Option[Value], workingDirectory: Option[String], overrideHost: Option[String]) extends Product with Serializable
-
-
trait
RegrestTest extends RegrestTestContext
-
-
-
case class
RestRequest(httpVersion: String, url: String, method: String, headers: Map[String, String], body: Option[Body]) extends Product with Serializable
-
case class
RestResponse(protocolVersion: String, statusCode: Int, reasonPhrase: String, headerMap: Map[String, String], body: String) extends Product with Serializable
-
class
SimpleTest extends RegrestTestContext with SimpleRequestExecutor with MongoReporter
Value Members
-
object
Main extends App
-
object
Regrest extends App with Logging
-
-
-