18 lines
347 B
PHP
18 lines
347 B
PHP
|
<?php
|
||
|
namespace Tests\Extension;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
abstract class AbstractPerformance extends TestCase
|
||
|
{
|
||
|
protected float $startTime;
|
||
|
protected function start(): void
|
||
|
{
|
||
|
$this->startTime = microtime(true);
|
||
|
}
|
||
|
protected function end(): float
|
||
|
{
|
||
|
return microtime(true) - $this->startTime;
|
||
|
}
|
||
|
}
|