java/sql-dk/src/test/java/info/globalcode/sql/dk/CLIParserTest.java
branchv_0
changeset 241 f332033ed66c
parent 238 4a1864c3e867
child 250 aae5009bd0af
     1.1 --- a/java/sql-dk/src/test/java/info/globalcode/sql/dk/CLIParserTest.java	Mon Mar 04 22:11:11 2019 +0100
     1.2 +++ b/java/sql-dk/src/test/java/info/globalcode/sql/dk/CLIParserTest.java	Mon Mar 04 22:20:36 2019 +0100
     1.3 @@ -22,9 +22,9 @@
     1.4  import info.globalcode.sql.dk.InfoLister.InfoType;
     1.5  import java.io.ByteArrayInputStream;
     1.6  import java.util.Collection;
     1.7 -import static org.testng.Assert.*;
     1.8 -import org.testng.annotations.BeforeMethod;
     1.9 -import org.testng.annotations.Test;
    1.10 +import org.junit.jupiter.api.BeforeEach;
    1.11 +import org.junit.jupiter.api.Test;
    1.12 +import static org.junit.jupiter.api.Assertions.*;
    1.13  
    1.14  /**
    1.15   *
    1.16 @@ -42,7 +42,7 @@
    1.17  	private static final String NAME_3 = "param3";
    1.18  	private CLIParser parser;
    1.19  
    1.20 -	@BeforeMethod
    1.21 +	@BeforeEach
    1.22  	public void setUpMethod() throws Exception {
    1.23  		parser = new CLIParser();
    1.24  	}