Files
java-design-patterns/thread-pool/src/test/java/com/iluwatar/threadpool/AppTest.java
T
2015-12-27 21:21:57 +02:00

19 lines
215 B
Java

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