#297 Create unit tests for Gateway API pattern

This commit is contained in:
tmcconville
2016-02-07 17:05:45 -06:00
parent 88c3b04eb3
commit 3cbb88e09c
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,17 @@
package com.iluwatar.api.gateway;
import org.junit.Test;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() throws Exception {
String[] args = {};
App.main(args);
}
}