Started working on Specification pattern.

This commit is contained in:
Ilkka Seppala
2015-04-21 22:57:50 +03:00
parent 5af0ebd766
commit 283388b7b9
4 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package com.iluwatar;
public class App {
public static void main( String[] args ) {
}
}

View File

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