java/sql-dk/src/test/java/info/globalcode/sql/dk/CLIParserTest.java
branchv_0
changeset 241 f332033ed66c
parent 238 4a1864c3e867
child 250 aae5009bd0af
--- 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();
 	}