Package com.github.restdriver.serverdriver.matchers

Examples of com.github.restdriver.serverdriver.matchers.HasResponseBody


     *
     * @param bodyMatcher The matcher against which the response body will be evaluated
     * @return The new matcher
     */
    public static TypeSafeMatcher<Response> hasResponseBody(Matcher<String> bodyMatcher) {
        return new HasResponseBody(bodyMatcher);
    }
View Full Code Here

TOP

Related Classes of com.github.restdriver.serverdriver.matchers.HasResponseBody

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.