#84 Skeleton for Layers architectural pattern

This commit is contained in:
Ilkka Seppala
2015-08-09 14:00:27 +03:00
parent 3a0ee1fea5
commit 1bcd822c58
4 changed files with 41 additions and 0 deletions

View File

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

View File

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