This repository was archived by the owner on Apr 22, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-1
lines changed
tests/src/test/java/org/neo4j/graphalgo/core Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 2020
2121import com .carrotsearch .hppc .LongHashSet ;
2222import com .carrotsearch .randomizedtesting .RandomizedTest ;
23+ import com .carrotsearch .randomizedtesting .annotations .ThreadLeakScope ;
2324import org .junit .Test ;
2425import org .neo4j .collection .primitive .PrimitiveIntIterable ;
2526import org .neo4j .collection .primitive .PrimitiveIntIterator ;
3031
3132import static org .junit .Assert .*;
3233
34+ @ ThreadLeakScope (ThreadLeakScope .Scope .NONE )
3335public final class IdMapTest extends RandomizedTest {
3436
3537 @ Test
Original file line number Diff line number Diff line change 1919package org .neo4j .graphalgo .core .utils .paged ;
2020
2121import com .carrotsearch .randomizedtesting .RandomizedTest ;
22+ import com .carrotsearch .randomizedtesting .annotations .ThreadLeakScope ;
2223import org .junit .Test ;
2324
2425import java .util .Arrays ;
3334import static org .junit .Assert .assertThat ;
3435import static org .junit .Assert .assertTrue ;
3536
37+ @ ThreadLeakScope (ThreadLeakScope .Scope .NONE )
3638public final class HugeLongArrayTest extends RandomizedTest {
3739
3840 private static final int PS = 16384 ;
Original file line number Diff line number Diff line change 1919package org .neo4j .graphalgo .core .utils .paged ;
2020
2121import com .carrotsearch .randomizedtesting .RandomizedTest ;
22+ import com .carrotsearch .randomizedtesting .annotations .ThreadLeakScope ;
2223import org .junit .Rule ;
2324import org .junit .Test ;
2425import org .junit .rules .ErrorCollector ;
2728
2829import static org .hamcrest .Matchers .is ;
2930
31+ @ ThreadLeakScope (ThreadLeakScope .Scope .NONE )
3032public final class PagedLongStackTest extends RandomizedTest {
3133
3234 @ Rule
Original file line number Diff line number Diff line change 1919package org .neo4j .graphalgo .core .utils .paged ;
2020
2121import com .carrotsearch .randomizedtesting .RandomizedTest ;
22+ import com .carrotsearch .randomizedtesting .annotations .ThreadLeakScope ;
2223import org .junit .Test ;
2324import org .neo4j .graphalgo .core .utils .PrivateLookup ;
2425
3132import static org .junit .Assert .assertTrue ;
3233import static org .junit .Assert .fail ;
3334
35+ @ ThreadLeakScope (ThreadLeakScope .Scope .NONE )
3436public final class SparseLongArrayTest extends RandomizedTest {
3537
3638 private static final int PS = PageUtil .pageSizeFor (Long .BYTES );
Original file line number Diff line number Diff line change 1919package org .neo4j .graphalgo .core .utils .queue ;
2020
2121import com .carrotsearch .randomizedtesting .RandomizedTest ;
22+ import com .carrotsearch .randomizedtesting .annotations .ThreadLeakScope ;
2223import org .junit .Test ;
2324import org .neo4j .helpers .collection .Pair ;
2425
3334import static org .junit .Assert .assertThat ;
3435import static org .junit .Assert .assertTrue ;
3536
36-
37+ @ ThreadLeakScope ( ThreadLeakScope . Scope . NONE )
3738public final class IntMinPriorityQueueTest extends RandomizedTest {
3839
3940 @ Test
You can’t perform that action at this time.
0 commit comments