public function testDeprecationUpdate() { $this->
expectDeprecation('\Drupal\Core\Database\Driver\pgsql\Update is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The PostgreSQL database driver has been moved to the pgsql module. See https://www.drupal.org/node/3129492'
);
$update =
new Update($this->connection, 'test'
);
$this->
assertInstanceOf(Update::
class,
$update);
} /**
* @covers Drupal\Core\Database\Driver\pgsql\Upsert
*/
public function testDeprecationUpsert() { $this->
expectDeprecation('\Drupal\Core\Database\Driver\pgsql\Upsert is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The PostgreSQL database driver has been moved to the pgsql module. See https://www.drupal.org/node/3129492'
);
$upsert =
new Upsert($this->connection, 'test'
);
$this->
assertInstanceOf(Upsert::
class,
$upsert);
}}