public function EntityQueryTest::testMetaData in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php \Drupal\KernelTests\Core\Entity\EntityQueryTest::testMetaData()
 
Test adding a tag and metadata to the Entity query object.
The tags and metadata should propagate to the SQL query object.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityQueryTest.php, line 735  
Class
- EntityQueryTest
 - Tests Entity Query functionality.
 
Namespace
Drupal\KernelTests\Core\EntityCode
public function testMetaData() {
  $query = $this->storage
    ->getQuery();
  $query
    ->addTag('efq_metadata_test')
    ->addMetaData('foo', 'bar')
    ->execute();
  global $efq_test_metadata;
  $this
    ->assertEqual($efq_test_metadata, 'bar', 'Tag and metadata propagated to the SQL query object.');
}