mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 14:58:39 +00:00
15 lines
208 B
Java
15 lines
208 B
Java
package com.iluwatar.business.delegate;
|
|
|
|
import org.junit.Test;
|
|
|
|
import com.iluwatar.business.delegate.App;
|
|
|
|
public class AppTest {
|
|
|
|
@Test
|
|
public void test() {
|
|
String[] args = {};
|
|
App.main(args);
|
|
}
|
|
}
|