The code snippet below is in my JUnit Test Case class. I am using three threads to test a class called SharedResources; getGuy is just one of them. My problem is after starting the threads, only the first one reads the sharedResource, and that only once.
Thread getGuy = new Thread(new Runnable() {
public void run() {
for(int i=0; i < 5; i++) {
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("I consume",resource.get());
}//for
}
});
Thanks for any help.