function AlterTest::testSimpleAlter
Tests that we can do basic alters.
File
- 
              core/
tests/ Drupal/ KernelTests/ Core/ Database/ AlterTest.php, line 18  
Class
- AlterTest
 - Tests the hook_query_alter capabilities of the Select builder.
 
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testSimpleAlter() : void {
  $query = $this->connection
    ->select('test');
  $query->addField('test', 'name');
  $query->addField('test', 'age', 'age');
  $query->addTag('database_test_alter_add_range');
  $result = $query->execute()
    ->fetchAll();
  $this->assertCount(2, $result, 'Returned the correct number of rows.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.