Files
java-design-patterns/thread-pool/src/test/java/com/iluwatar/threadpool/AppTest.java
2015-11-01 21:29:13 -05:00

21 lines
252 B
Java

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