Files
appwrite/tests/benchmarks/Functions/FunctionsCustomServerBench.php
T
2022-10-31 19:46:20 +13:00

18 lines
343 B
PHP

<?php
namespace Tests\Benchmarks\Functions;
use PhpBench\Attributes\BeforeMethods;
use Tests\E2E\Scopes\SideServer;
class FunctionsCustomServerBench extends Base
{
use SideServer;
#[BeforeMethods(['createFunction', 'prepareDeployment'])]
public function benchDeploymentCreate()
{
$this->createDeployment();
}
}