mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 04:28:51 +00:00
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetPerformance\ReferenceHelper;
|
|
|
|
class InsertRowBenchmark extends AbstractInsertDelete
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(256, 512);
|
|
}
|
|
|
|
/**
|
|
* @Groups({"slow"})
|
|
* @revs(4)
|
|
* @Iterations(4)
|
|
* @OutputTimeUnit("milliseconds")
|
|
* @AfterMethods("tearDown")
|
|
*/
|
|
public function benchmarkInsertRowsEarly(): void
|
|
{
|
|
$this->spreadsheet->getActiveSheet()->insertNewRowBefore(2, 4);
|
|
}
|
|
|
|
/**
|
|
* @Groups({"slow"})
|
|
* @revs(4)
|
|
* @Iterations(4)
|
|
* @OutputTimeUnit("milliseconds")
|
|
* @AfterMethods("tearDown")
|
|
*/
|
|
public function benchmarkInsertRowsMid(): void
|
|
{
|
|
$this->spreadsheet->getActiveSheet()->insertNewRowBefore(255, 4);
|
|
}
|
|
|
|
/**
|
|
* @Groups({"slow"})
|
|
* @revs(4)
|
|
* @Iterations(7)
|
|
* @OutputTimeUnit("milliseconds")
|
|
* @AfterMethods("tearDown")
|
|
*/
|
|
public function benchmarkInsertRowsLate(): void
|
|
{
|
|
$this->spreadsheet->getActiveSheet()->insertNewRowBefore(510, 4);
|
|
}
|
|
}
|