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

io.magentys.rest.model.RestAssuredBody Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package io.magentys.rest.model;

import io.restassured.response.ResponseBody;

public class RestAssuredBody implements Body {

    private final ResponseBody body;

    public RestAssuredBody(ResponseBody body) {
        this.body = body;
    }

    @Override
    public String prettyPrint() {
        return body.prettyPrint();
    }

    public static RestAssuredBody from(ResponseBody body) {
        return new RestAssuredBody(body);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy