You are here

public function UpdateTest::testMultiGTUpdate in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Database/UpdateTest.php \Drupal\KernelTests\Core\Database\UpdateTest::testMultiGTUpdate()

Confirms that we can update multiple records with a non-equality condition.

File

core/tests/Drupal/KernelTests/Core/Database/UpdateTest.php, line 58

Class

UpdateTest
Tests the update query builder.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testMultiGTUpdate() {
  $num_updated = $this->connection
    ->update('test')
    ->fields([
    'job' => 'Musician',
  ])
    ->condition('age', 26, '>')
    ->execute();
  $this
    ->assertIdentical($num_updated, 2, 'Updated 2 records.');
  $num_matches = $this->connection
    ->query('SELECT COUNT(*) FROM {test} WHERE job = :job', [
    ':job' => 'Musician',
  ])
    ->fetchField();
  $this
    ->assertIdentical($num_matches, '2', 'Updated fields successfully.');
}