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