Added skeleton for Resource Acquisition Is Initialization pattern.

This commit is contained in:
Ilkka Seppala
2015-05-16 21:49:21 +03:00
parent 70e95e5d7c
commit de7db92f59
4 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,7 @@
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);
}
}