Files
java-design-patterns/front-controller/src/test/java/com/iluwatar/front/controller/AppTest.java
T
2015-12-27 21:21:57 +02:00

18 lines
204 B
Java

package com.iluwatar.front.controller;
import org.junit.Test;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}