}
@Test(groups = { "slow-unit" })
public void tryLockExclusive_inOtherJvmAfterLockingInThisJvm_false() {
assertTrue(simpleFileLock.tryLockExclusive());
ShellClassRunner otherJvmRunner = new ShellClassRunner();
otherJvmRunner.runClassAsync(LockInOtherJVM.class);
assertEquals(EXIT_STATUS_ON_FALSE_LOCK, otherJvmRunner.getExitCode());
}