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

xyz.migoo.framework.assertions.ResponseCodeAssertion Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package xyz.migoo.framework.assertions;

import xyz.migoo.simplehttp.Response;

/**
 * @author xiaomi
 * @date 2019-04-13 21:37
 */
public class ResponseCodeAssertion extends AbstractAssertion {

    @Override
    public void setActual(Object actual) {
        Response response = (Response)actual;
        this.actual = response.statusCode();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy