18 lines
192 B
Java
Raw Normal View History

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