public function AlterTest::testSimpleAlter in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Database/AlterTest.php \Drupal\KernelTests\Core\Database\AlterTest::testSimpleAlter()
Tests that we can do basic alters.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Database/ AlterTest.php, line 16
Class
- AlterTest
- Tests the hook_query_alter capabilities of the Select builder.
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testSimpleAlter() {
$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.');
}