20 lines
258 B
Java
20 lines
258 B
Java
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import picocli.CommandLine;
|
|
|
|
|
|
class TestExec {
|
|
|
|
@Test
|
|
void test() throws InterruptedException {
|
|
|
|
Exec exec = new Exec();
|
|
|
|
|
|
//Exec.main(new String[] {});
|
|
}
|
|
|
|
}
|