mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 00:58:24 +00:00
15 lines
194 B
Java
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);
|
|
}
|
|
}
|