1
0
mirror of https://github.com/livingcomputermuseum/pdp7-unix.git synced 2026-02-11 02:40:46 +00:00

changed to testng

This commit is contained in:
Tom Everett
2016-03-02 20:29:26 -07:00
parent 8eb36d4b3b
commit e3149189da
2 changed files with 5 additions and 5 deletions

View File

@@ -29,9 +29,9 @@
<version>2.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.6</version>
</dependency>
</dependencies>
<build>

View File

@@ -6,8 +6,8 @@ import java.io.InputStream;
import java.util.Collection;
import org.apache.commons.io.FileUtils;
import org.junit.Assert;
import org.junit.Test;
import org.testng.Assert;
import org.testng.annotations.Test;
import com.khubla.pdp7parse.antlr4.pdp7Parser.ProgContext;