Files
java-design-patterns/thread-pool/src/test/java/com/iluwatar/threadpool/AppTest.java

21 lines
252 B
Java
Raw Normal View History

package com.iluwatar.threadpool;
2015-04-12 23:49:00 +03:00
2015-04-15 21:25:26 +03:00
import org.junit.Test;
import com.iluwatar.threadpool.App;
2015-04-15 21:45:14 +03:00
2015-08-21 23:23:01 +03:00
/**
* Application test
*
2015-08-21 23:23:01 +03:00
* @author ilkka
*
*/
2015-04-12 23:49:00 +03:00
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
2015-04-12 23:49:00 +03:00
}