Files
oficial/app/tests/performance/AbstractPerformance.php
Juan Pablo Vial f8ac0f14f0 Abstracts
2025-04-29 22:25:32 -04:00

17 lines
348 B
PHP

<?php
namespace ProVM\Performance;
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;
}
}