You are here

public function LockBackendAbstractTest::testWaitFalse in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Lock/LockBackendAbstractTest.php \Drupal\Tests\Core\Lock\LockBackendAbstractTest::testWaitFalse()
  2. 9 core/tests/Drupal/Tests/Core/Lock/LockBackendAbstractTest.php \Drupal\Tests\Core\Lock\LockBackendAbstractTest::testWaitFalse()

Tests the wait() method when lockMayBeAvailable() returns TRUE.

File

core/tests/Drupal/Tests/Core/Lock/LockBackendAbstractTest.php, line 27

Class

LockBackendAbstractTest
@coversDefaultClass \Drupal\Tests\Core\Lock\LockBackendAbstractTest @group Lock

Namespace

Drupal\Tests\Core\Lock

Code

public function testWaitFalse() {
  $this->lock
    ->expects($this
    ->any())
    ->method('lockMayBeAvailable')
    ->with($this
    ->equalTo('test_name'))
    ->will($this
    ->returnValue(TRUE));
  $this
    ->assertFalse($this->lock
    ->wait('test_name'));
}