#271 implements producer-consumer

This commit is contained in:
hongsw
2015-10-28 09:55:05 +08:00
parent a2b8359ab5
commit 07faa2f625
11 changed files with 299 additions and 0 deletions
@@ -0,0 +1,20 @@
package com.iluwatar.poison.pill;
import org.junit.Test;
import com.iluwatar.producer.consumer.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() throws Exception {
String[] args = {};
App.main(args);
}
}