Files
java-design-patterns/api-gateway/src/test/java/com/iluwatar/api/gateway/AppTest.java
T
2016-02-07 17:05:45 -06:00

18 lines
215 B
Java

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);
}
}