protected $connection;
/**
* {@inheritdoc}
*/
protected function setUp(): void
{ parent::
setUp();
$this->connection = Database::
getConnection();
$this->
installSampleSchema();
$this->
addSampleData();
} /**
* Sets up tables for NULL handling.
*/
public function ensureSampleDataNull() { $this->connection->
insert('test_null'
) ->
fields(['name', 'age'
]) ->
values([ 'name' => 'Kermit',