diff -r 09c72e23c895 -r f332033ed66c java/sql-dk/src/test/java/info/globalcode/sql/dk/CLIParserTest.java --- a/java/sql-dk/src/test/java/info/globalcode/sql/dk/CLIParserTest.java Mon Mar 04 22:11:11 2019 +0100 +++ b/java/sql-dk/src/test/java/info/globalcode/sql/dk/CLIParserTest.java Mon Mar 04 22:20:36 2019 +0100 @@ -22,9 +22,9 @@ import info.globalcode.sql.dk.InfoLister.InfoType; import java.io.ByteArrayInputStream; import java.util.Collection; -import static org.testng.Assert.*; -import org.testng.annotations.BeforeMethod; -import org.testng.annotations.Test; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.*; /** * @@ -42,7 +42,7 @@ private static final String NAME_3 = "param3"; private CLIParser parser; - @BeforeMethod + @BeforeEach public void setUpMethod() throws Exception { parser = new CLIParser(); }