Adjusting JUnit tests to Jupiter API

This commit is contained in:
Svante Schubert
2022-12-19 17:28:34 +01:00
parent c0cce2188c
commit 92af95d90f

View File

@@ -1,7 +1,5 @@
package org.mustangproject.commandline; package org.mustangproject.commandline;
import org.junit.Test;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.IOException; import java.io.IOException;
import java.io.InputStreamReader; import java.io.InputStreamReader;
@@ -11,7 +9,8 @@ import java.nio.file.Path;
import java.nio.file.Paths; import java.nio.file.Paths;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
public class CliIT { public class CliIT {