implants the #75 reader writer lock

This commit is contained in:
hoswey
2015-12-26 14:17:24 +08:00
parent a0151826ad
commit 3731d26f6d
9 changed files with 409 additions and 0 deletions
@@ -0,0 +1,20 @@
package com.iluwatar.reader.writer.lock;
import org.junit.Test;
import com.iluwatar.reader.writer.lock.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() throws Exception {
String[] args = {};
App.main(args);
}
}