' . "\n"
. '

100000 rows inserted.' . "\n"
. '
' . "\n",
],
];
}
/**
* Test for getMessageForInsertedRows() method
*
* @param int $rows Number of rows
* @param string $output Expected string
*/
#[DataProvider('providerInsertedRows')]
public function testInsertedRows(int $rows, string $output): void
{
$this->object = new Message();
$this->object->addMessage(Message::getMessageForInsertedRows($rows));
self::assertSame($output, $this->object->getDisplay());
}
/**
* Data provider for testDeletedRows
*
* @return array