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