Added Lazy Loading idiom.

This commit is contained in:
Ilkka Seppala
2015-04-10 20:24:16 +03:00
parent 484e1ddfca
commit 33566805ee
11 changed files with 246 additions and 2 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);
}
}