public function SharedTempStoreTest::testGetIfOwner in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/tests/src/Unit/SharedTempStoreTest.php \Drupal\Tests\user\Unit\SharedTempStoreTest::testGetIfOwner()
Tests the getIfOwner() method.
@covers ::getIfOwner
File
- core/
modules/ user/ tests/ src/ Unit/ SharedTempStoreTest.php, line 117 - Contains \Drupal\Tests\user\Unit\SharedTempStoreTest.
Class
- SharedTempStoreTest
- @coversDefaultClass \Drupal\user\SharedTempStore @group user
Namespace
Drupal\Tests\user\UnitCode
public function testGetIfOwner() {
$this->keyValue
->expects($this
->at(0))
->method('get')
->with('test_2')
->will($this
->returnValue(FALSE));
$this->keyValue
->expects($this
->at(1))
->method('get')
->with('test')
->will($this
->returnValue($this->ownObject));
$this->keyValue
->expects($this
->at(2))
->method('get')
->with('test')
->will($this
->returnValue($this->otherObject));
$this
->assertNull($this->tempStore
->getIfOwner('test_2'));
$this
->assertSame($this->ownObject->data, $this->tempStore
->getIfOwner('test'));
$this
->assertNull($this->tempStore
->getIfOwner('test'));
}