summaryrefslogtreecommitdiffstats
path: root/documentgen-test
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-08-11 21:19:39 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-08-11 21:19:39 +0000
commit9435133c1fe4ef65ec1d9fe1b9d90677b76bbcfe (patch)
tree7f6fa87d653b183821126df3e5ef4ded313b4db5 /documentgen-test
parenta9775442179fd17067cd351051d803920c0d74fc (diff)
Stick to junit for simple test.
Diffstat (limited to 'documentgen-test')
-rw-r--r--documentgen-test/src/test/java/com/yahoo/vespa/config/DocumentGenPluginTest.java10
1 files changed, 3 insertions, 7 deletions
diff --git a/documentgen-test/src/test/java/com/yahoo/vespa/config/DocumentGenPluginTest.java b/documentgen-test/src/test/java/com/yahoo/vespa/config/DocumentGenPluginTest.java
index 91b786e20f5..b3ae9d2bd0c 100644
--- a/documentgen-test/src/test/java/com/yahoo/vespa/config/DocumentGenPluginTest.java
+++ b/documentgen-test/src/test/java/com/yahoo/vespa/config/DocumentGenPluginTest.java
@@ -39,8 +39,6 @@ import com.yahoo.document.datatypes.WeightedSet;
import com.yahoo.document.serialization.DocumentDeserializerFactory;
import com.yahoo.document.serialization.DocumentSerializer;
import com.yahoo.document.serialization.DocumentSerializerFactory;
-import com.yahoo.document.serialization.VespaDocumentDeserializerHead;
-import com.yahoo.document.serialization.VespaDocumentSerializerHead;
import com.yahoo.io.GrowableByteBuffer;
import com.yahoo.searchdefinition.derived.Deriver;
import com.yahoo.tensor.Tensor;
@@ -74,16 +72,14 @@ import java.util.Iterator;
import java.util.List;
import java.util.Map;
-import static junit.framework.TestCase.assertFalse;
-import static junit.framework.TestCase.assertNotSame;
-import static org.hamcrest.CoreMatchers.instanceOf;
import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.assertThat;
/**
* Tests vespa-documentgen-plugin
@@ -448,7 +444,7 @@ public class DocumentGenPluginTest {
final Field field = book.getField("ref");
final FieldValue value = book.getFieldValue(field);
- assertThat(value, instanceOf(ReferenceFieldValue.class));
+ assertTrue(value instanceof ReferenceFieldValue);
final ReferenceFieldValue refValue = (ReferenceFieldValue)value;
assertEquals(field.getDataType(), refValue.getDataType());
assertTrue(refValue.getDocumentId().isPresent());