public function InsertTest::testInsertLastInsertID in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Database/InsertTest.php \Drupal\KernelTests\Core\Database\InsertTest::testInsertLastInsertID()
 
Tests that inserts return the proper auto-increment ID.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Database/ InsertTest.php, line 139  
Class
- InsertTest
 - Tests the insert builder.
 
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testInsertLastInsertID() {
  $id = $this->connection
    ->insert('test')
    ->fields([
    'name' => 'Larry',
    'age' => '30',
  ])
    ->execute();
  $this
    ->assertIdentical($id, '5', 'Auto-increment ID returned successfully.');
}