#111 Implementation of Step Builder pattern

This commit is contained in:
Dmitriy Zarubin
2015-08-07 16:17:47 +03:00
parent 3dc6b81962
commit f52d7d3dbc
9 changed files with 541 additions and 0 deletions

View File

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