(final String content)
| 196 | } |
| 197 | |
| 198 | public static RequestMatcher by(final String content) { |
| 199 | return by(text(checkNotNullOrEmpty(content, "Content should not be null"))); |
| 200 | } |
| 201 | |
| 202 | public static RequestMatcher by(final Resource resource) { |
| 203 | checkNotNull(resource, "Resource should not be null"); |