2017-10-16 19:33:15 +02:00

16 lines
216 B
Java

package com.iluwatar.eip.splitter;
import org.junit.Test;
/**
* Test for App class
*/
public class AppTest {
@Test
public void testMain() throws Exception {
String[] args = {};
App.main(args);
}
}