There are other questions about this issue, but I'm trying to figure how to approach unit testing something like this:
public class Semaphore extends Lock {
private AtomicInteger semaphore = new AtomicInteger(0);
public synchronized boolean available() {
return semaphore.intValue() == 0;
}
public synchronized void acquire() {
semaphore.incrementAndGet();
}
public synchronized void release() {
semaphore.decrementAndGet();
}
}
This is my homespun locking mechanism (just for learning purposes). How would I test the thread safety of this? I know that there are no guarantees when it comes to unit testing concurrent code, but how would I even go about writing a unit test that ATTEMPTS to test the obvious invariants inherent in this locking mechanism?