public function EmptyStatementTest::testEmpty in Drupal 8
Same name and namespace 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.');
}