Skip to content

Commit

Permalink
More test fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
fridgebuzz committed Feb 10, 2015
1 parent 3a09a68 commit d6f7e56
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public static void createGrids() {
@Test
public void lockingUnlockedSucceeds()
{
System.out.println("lockingUnlockSucceeds");
final PublicDistributedReentrantReadWriteLock lock =
(PublicDistributedReentrantReadWriteLock)lockService1.getReentrantReadWriteLock("testLock");
assertNotWriteLocked(lock);
Expand Down Expand Up @@ -74,7 +73,6 @@ public void lockingUnlockedSucceeds()
@Test
public void testWriteLockInterruptibly_Interruptible()
{
System.out.println("testWriteLockInterruptibly_Interruptible");
final PublicDistributedReentrantReadWriteLock lock =
(PublicDistributedReentrantReadWriteLock)lockService1.getReentrantReadWriteLock("testLock");

Expand All @@ -98,7 +96,6 @@ public void realRun() throws InterruptedException {
@Test
public void testReadLockInterruptibly_Interruptible()
{
System.out.println("testReadLockInterruptibly_Interruptible");
final PublicDistributedReentrantReadWriteLock lock =
(PublicDistributedReentrantReadWriteLock)lockService1.getReentrantReadWriteLock("testLock");

Expand All @@ -121,7 +118,6 @@ public void realRun() throws InterruptedException {
@Test
public void testTryReadLock_Interruptible()
{
System.out.println("testTryReadLock_Interruptible");
final PublicDistributedReentrantReadWriteLock lock =
(PublicDistributedReentrantReadWriteLock)lockService1.getReentrantReadWriteLock("testLock");

Expand All @@ -144,7 +140,6 @@ public void realRun() throws InterruptedException {
@Test
public void testTryWriteLock_Interruptible()
{
System.out.println("testTryWriteLock_Interruptible");
final PublicDistributedReentrantReadWriteLock lock =
(PublicDistributedReentrantReadWriteLock)lockService1.getReentrantReadWriteLock("testLock");

Expand All @@ -167,7 +162,6 @@ public void realRun() throws InterruptedException {
@Test (expected = IllegalMonitorStateException.class)
public void testWriteLock_MSIE()
{
System.out.println("testWriteLock_MSIE");
final PublicDistributedReentrantReadWriteLock lock =
(PublicDistributedReentrantReadWriteLock)lockService1.getReentrantReadWriteLock("testLock");
assertNotWriteLocked(lock);
Expand Down

0 comments on commit d6f7e56

Please sign in to comment.