function EmptyStatementTest::testEmpty
Same name in other branches
- 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\DatabaseCode
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.