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