18 lines
204 B
Java
Raw Normal View History

package com.iluwatar.front.controller;
import org.junit.Test;
2015-08-18 22:54:15 +03:00
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}