Se mueve todo a extension de pruebas
This commit is contained in:
@ -1,17 +0,0 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user