2025-04-29 22:25:32 -04:00
|
|
|
<?php
|
2025-04-29 23:55:51 -04:00
|
|
|
namespace ProVM\Tests\Extension;
|
2025-04-29 22:25:32 -04:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|