20 lines
236 B
Java
Raw Normal View History

2015-08-21 23:19:55 +03:00
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);
}
}