public function SharedTempStoreTest::testSetIfOwnerWhenNotExists in Drupal 8
Same name in this branch
- 8 core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testSetIfOwnerWhenNotExists()
- 8 core/modules/user/tests/src/Unit/SharedTempStoreTest.php \Drupal\Tests\user\Unit\SharedTempStoreTest::testSetIfOwnerWhenNotExists()
Tests the setIfOwner() method when no key exists.
@covers ::setIfOwner
File
- core/
tests/ Drupal/ Tests/ Core/ TempStore/ SharedTempStoreTest.php, line 201
Class
- SharedTempStoreTest
- @coversDefaultClass \Drupal\Core\TempStore\SharedTempStore @group TempStore
Namespace
Drupal\Tests\Core\TempStoreCode
public function testSetIfOwnerWhenNotExists() {
$this->keyValue
->expects($this
->once())
->method('setWithExpireIfNotExists')
->will($this
->returnValue(TRUE));
$this
->assertTrue($this->tempStore
->setIfOwner('test', 'test_data'));
}