aboutsummaryrefslogtreecommitdiffstats
path: root/testutil
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2023-08-29 12:55:18 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2023-08-29 13:11:59 +0200
commit097fca83b38956b887fd4f1e2cf33f4bafdea921 (patch)
treed6d2ed47763695c89aaa67afefd7f693ec01341e /testutil
parentb7562bb205863984e78ae6daed400cd37e9139b0 (diff)
Consolidate hamcrest usage to 2.x and remove cthul-matchers
Diffstat (limited to 'testutil')
-rw-r--r--testutil/pom.xml9
-rw-r--r--testutil/src/main/java/com/yahoo/test/LinePatternMatcher.java4
2 files changed, 3 insertions, 10 deletions
diff --git a/testutil/pom.xml b/testutil/pom.xml
index f3bc9cb2212..7f57b6defee 100644
--- a/testutil/pom.xml
+++ b/testutil/pom.xml
@@ -13,7 +13,7 @@
<packaging>jar</packaging>
<version>8-SNAPSHOT</version>
<name>${project.artifactId}</name>
- <description>Library of useful Hamcrest matchers.</description>
+ <description>Library of useful test utilities.</description>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
@@ -34,12 +34,7 @@
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-core</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-library</artifactId>
+ <artifactId>hamcrest</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
diff --git a/testutil/src/main/java/com/yahoo/test/LinePatternMatcher.java b/testutil/src/main/java/com/yahoo/test/LinePatternMatcher.java
index 855a0bc851e..c870c0b29b4 100644
--- a/testutil/src/main/java/com/yahoo/test/LinePatternMatcher.java
+++ b/testutil/src/main/java/com/yahoo/test/LinePatternMatcher.java
@@ -3,7 +3,6 @@ package com.yahoo.test;
import org.hamcrest.BaseMatcher;
import org.hamcrest.Description;
-import org.hamcrest.Factory;
import org.hamcrest.Matcher;
/**
@@ -35,8 +34,7 @@ public class LinePatternMatcher extends BaseMatcher<String> {
return false;
}
- @Factory
- public static <T> Matcher<String> containsLineWithPattern(String pattern) {
+ public static Matcher<String> containsLineWithPattern(String pattern) {
return new LinePatternMatcher(pattern);
}