Added Null Object pattern.

This commit is contained in:
Ilkka Seppala
2015-03-04 22:59:42 +02:00
parent eb43f6efc3
commit 1cad280629
9 changed files with 225 additions and 4 deletions

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