#143 Skeleton for Message Channel EIP example

This commit is contained in:
Ilkka Seppala
2015-08-22 14:54:43 +03:00
parent da6d92d125
commit c4912b2a2b
5 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.iluwatar.message.channel;
public class App {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

View File

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