Add unit test.

This commit is contained in:
Ilkka Seppala 2015-04-15 21:25:26 +03:00
parent 1988ab494c
commit 281f225a54

View File

@ -1,4 +1,12 @@
package com.iluwatar;
import org.junit.Test;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}