#107 Added missing test for Layers example

This commit is contained in:
Ilkka Seppala 2015-08-19 22:00:36 +03:00
parent 0d2e033df6
commit 5295ad6c2f

View File

@ -0,0 +1,19 @@
package com.iluwatar.layers;
import org.junit.Test;
import com.iluwatar.layers.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}