}
@Test
public void acquireLockFail() {
LOG.info("Running acquireLockFail()...");
final Client client = new ClientImpl(CONFIG);
Assert.assertTrue("Failed to acquire the expected lock.", client.acquireLock("systemLockA", "pete", 10000));
Assert.assertFalse("Acquired lock that should have been in use.",
client.acquireLock("systemLockA", "george", 10));
Assert.assertTrue("Failed to acquire the expected lock.", client.acquireLock("systemLockA", "pete", 10000));
}