#184 Fluent Interface pattern

This commit is contained in:
Hannes Pernpeintner
2015-08-17 03:54:37 +02:00
parent 9eb64bc0e5
commit 02162994a3
5 changed files with 316 additions and 1 deletions
@@ -0,0 +1,12 @@
package com.iluwatar.fluentinterface;
import org.junit.Test;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}