function EmptyStatementTest::testEmpty

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Database/EmptyStatementTest.php \Drupal\Tests\Core\Database\EmptyStatementTest::testEmpty()

Tests that the empty result set behaves as empty.

File

core/tests/Drupal/Tests/Core/Database/EmptyStatementTest.php, line 19

Class

EmptyStatementTest
Tests the empty pseudo-statement class.

Namespace

Drupal\Tests\Core\Database

Code

public function testEmpty() {
  $result = new StatementEmpty();
  $this->assertInstanceOf(StatementInterface::class, $result);
  $this->assertNull($result->fetchObject(), 'Null result returned.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.