Added event aggregator pattern.

This commit is contained in:
Ilkka Seppala
2015-03-13 21:59:24 +02:00
parent c5a02266c8
commit ca59792916
15 changed files with 389 additions and 1 deletions

View File

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