Files
java-design-patterns/thread-pool/src/test/java/com/iluwatar/threadpool/AppTest.java
T
2015-05-31 11:55:18 +03:00

15 lines
194 B
Java

package com.iluwatar.threadpool;
import org.junit.Test;
import com.iluwatar.threadpool.App;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}