function FetchTest::testRowCount
Tests that rowCount() throws exception on SELECT query.
File
- 
              core/tests/ Drupal/ KernelTests/ Core/ Database/ FetchTest.php, line 184 
Class
- FetchTest
- Tests the Database system's various fetch capabilities.
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testRowCount() {
  $result = $this->connection
    ->query('SELECT name FROM {test}');
  try {
    $result->rowCount();
    $exception = FALSE;
  } catch (RowCountException $e) {
    $exception = TRUE;
  }
  $this->assertTrue($exception, 'Exception was thrown');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
