function SharedTempStoreTest::testGetMetadata
Tests the getMetadata() method.
@covers ::getMetadata
File
-
core/
tests/ Drupal/ Tests/ Core/ TempStore/ SharedTempStoreTest.php, line 262
Class
- SharedTempStoreTest
- @coversDefaultClass \Drupal\Core\TempStore\SharedTempStore[[api-linebreak]] @group TempStore
Namespace
Drupal\Tests\Core\TempStoreCode
public function testGetMetadata() {
$this->keyValue
->expects($this->exactly(2))
->method('get')
->with('test')
->willReturnOnConsecutiveCalls($this->ownObject, FALSE);
$metadata = $this->tempStore
->getMetadata('test');
$this->assertInstanceOf(Lock::class, $metadata);
$this->assertObjectHasAttribute('updated', $metadata);
// Data should get removed.
$this->assertObjectNotHasAttribute('data', $metadata);
$this->assertNull($this->tempStore
->getMetadata('test'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.