* Tests the upgrade path for Block Content reusable index.
*/
publicfunctiontestRunUpdates():void{
$connection=Database::getConnection();
$this->assertFalse($connection->schema()->indexExists('block_content_field_data','block_content_field__reusable'),'Block Content reusable index not yet added.');
$this->runUpdates();
$this->assertTrue($connection->schema()->indexExists('block_content_field_data','block_content_field__reusable'),'Block Content reusable index has been added.');