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