M332-PT-NGCC/tests/TestExec.java

14 lines
168 B
Java
Raw Permalink Normal View History

2019-09-26 21:38:13 +02:00
import org.junit.jupiter.api.Test;
class TestExec {
@Test
void test() throws InterruptedException {
2019-10-25 15:39:04 +02:00
2019-09-26 21:38:13 +02:00
Exec exec = new Exec();
2019-10-25 15:39:04 +02:00
Exec.main(new String[] {});
2019-09-26 21:38:13 +02:00
}
}