Added test class for App

This commit is contained in:
adkm 2017-10-12 17:33:03 +02:00
parent 522721559b
commit 60f07d1940
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,15 @@
package com.iluwatar.eip.wiretap;
import org.junit.Test;
/**
* Test for App class
*/
public class AppTest {
@Test
public void testMain() {
String[] args = {};
App.main(args);
}
}

View File

@ -1,4 +1,4 @@
package com.iluwatar.eip.wiretap;
package com.iluwatar.eip.wiretap.routes;
import org.apache.camel.EndpointInject;
import org.apache.camel.Message;