Make AbstractWebRequestMatcherTests abstract

This commit is contained in:
Sam Brannen
2019-09-03 12:13:56 +02:00
parent 2c44eabe41
commit 280a1b8880
@@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Sam Brannen
* @since 4.2
*/
public class AbstractWebRequestMatcherTests {
abstract class AbstractWebRequestMatcherTests {
protected void assertMatches(WebRequestMatcher matcher, String url) throws MalformedURLException {
assertThat(matcher.matches(new WebRequest(new URL(url)))).isTrue();