M332-PT-NGCC/tests/TestExec.java
2019-10-10 18:01:08 +02:00

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[] {});
}
}