Replace JUnit 3/4 @Ignore with JUnit 5 @Disabled
This commit is contained in:
parent
5e9b391ce2
commit
528699431c
|
@ -20,7 +20,7 @@ import java.util.LinkedList;
|
||||||
import java.util.Queue;
|
import java.util.Queue;
|
||||||
|
|
||||||
import org.apache.commons.collections4.BulkTest;
|
import org.apache.commons.collections4.BulkTest;
|
||||||
import org.junit.Ignore;
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -49,7 +49,7 @@ public class SynchronizedQueueTest<T> extends AbstractQueueTest<T> {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Ignore("Run once")
|
@Disabled("Run once")
|
||||||
public void testCreate() throws Exception {
|
public void testCreate() throws Exception {
|
||||||
Queue<T> queue = makeObject();
|
Queue<T> queue = makeObject();
|
||||||
writeExternalFormToDisk((java.io.Serializable) queue,
|
writeExternalFormToDisk((java.io.Serializable) queue,
|
||||||
|
|
Loading…
Reference in New Issue