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