function SharedTempStoreTest::testSetIfNotExists
Same name in this branch
- 8.9.x core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testSetIfNotExists()
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testSetIfNotExists()
- 10 core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testSetIfNotExists()
- 11.x core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testSetIfNotExists()
Tests the setIfNotExists() methods.
@covers ::setIfNotExists @expectedDeprecation \Drupal\user\SharedTempStore is scheduled for removal in Drupal 9.0.0. Use \Drupal\Core\TempStore\SharedTempStore instead. See https://www.drupal.org/node/2935639.
File
-
core/
modules/ user/ tests/ src/ Unit/ SharedTempStoreTest.php, line 193
Class
- SharedTempStoreTest
- @coversDefaultClass \Drupal\user\SharedTempStore @group user @group legacy @runTestsInSeparateProcesses @preserveGlobalState disabled
Namespace
Drupal\Tests\user\UnitCode
public function testSetIfNotExists() {
$this->keyValue
->expects($this->once())
->method('setWithExpireIfNotExists')
->with('test', $this->ownObject, 604800)
->will($this->returnValue(TRUE));
$this->assertTrue($this->tempStore
->setIfNotExists('test', 'test_data'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.