Skip to content

Commit

Permalink
Upgrade legacy tests to junit 5.
Browse files Browse the repository at this point in the history
Update and clean legacy tests.
Remove duplicate of legacy primitive collection and test from bolt.
  • Loading branch information
MishaDemianenko committed Jul 23, 2018
1 parent 9f3c602 commit b44c62b
Show file tree
Hide file tree
Showing 28 changed files with 377 additions and 880 deletions.
Expand Up @@ -35,6 +35,7 @@
import org.neo4j.bolt.v1.packstream.PackOutput; import org.neo4j.bolt.v1.packstream.PackOutput;
import org.neo4j.bolt.v1.packstream.PackStream; import org.neo4j.bolt.v1.packstream.PackStream;
import org.neo4j.bolt.v1.packstream.PackType; import org.neo4j.bolt.v1.packstream.PackType;
import org.neo4j.collection.primitive.PrimitiveLongIntKeyValueArray;
import org.neo4j.kernel.api.exceptions.Status; import org.neo4j.kernel.api.exceptions.Status;
import org.neo4j.values.AnyValue; import org.neo4j.values.AnyValue;
import org.neo4j.values.AnyValueWriter; import org.neo4j.values.AnyValueWriter;
Expand Down

This file was deleted.

This file was deleted.

8 changes: 6 additions & 2 deletions community/legacy/pom.xml
Expand Up @@ -66,8 +66,12 @@
</dependency> </dependency>


<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.vintage</groupId>
<artifactId>junit</artifactId> <artifactId>junit-vintage-engine</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hamcrest</groupId> <groupId>org.hamcrest</groupId>
Expand Down

0 comments on commit b44c62b

Please sign in to comment.