16 lines
216 B
Java
Raw Normal View History

2017-10-16 19:33:15 +02:00
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);
}
}