Class HttpResponseMatchers
- java.lang.Object
-
- com.github.paweladamski.httpclientmock.matchers.HttpResponseMatchers
-
public final class HttpResponseMatchers extends Object
-
-
Constructor Summary
Constructors Constructor Description HttpResponseMatchers()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpEntityContainer>hasContent(String content)static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpEntityContainer>hasContent(String content, String charset)static org.hamcrest.Matcher<? super org.apache.hc.client5.http.protocol.HttpClientContext>hasCookie(String expectedCookieName, String expectedCookieValue)static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpResponse>hasNoEntity()static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpResponse>hasReason(String expectedReason)static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpResponse>hasStatus(int expectedStatus)
-
-
-
Method Detail
-
hasStatus
public static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpResponse> hasStatus(int expectedStatus)
-
hasNoEntity
public static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpResponse> hasNoEntity()
-
hasReason
public static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpResponse> hasReason(String expectedReason)
-
hasContent
public static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpEntityContainer> hasContent(String content)
-
hasContent
public static org.hamcrest.Matcher<? super org.apache.hc.core5.http.HttpEntityContainer> hasContent(String content, String charset)
-
-