mirror of
https://github.com/appwrite/appwrite
synced 2026-05-06 06:48:22 +00:00
22 lines
454 B
PHP
22 lines
454 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\Benchmarks\Services\Functions;
|
||
|
|
|
||
|
|
use PhpBench\Attributes\BeforeMethods;
|
||
|
|
use PhpBench\Attributes\Iterations;
|
||
|
|
use PhpBench\Attributes\Revs;
|
||
|
|
use Tests\E2E\Scopes\SideServer;
|
||
|
|
|
||
|
|
class FunctionsCustomServerBench extends Base
|
||
|
|
{
|
||
|
|
use SideServer;
|
||
|
|
|
||
|
|
#[Revs(1)]
|
||
|
|
#[Iterations(1)]
|
||
|
|
#[BeforeMethods(['createFunction', 'prepareDeployment'])]
|
||
|
|
public function benchDeploymentCreate()
|
||
|
|
{
|
||
|
|
$this->createDeployment();
|
||
|
|
}
|
||
|
|
}
|