1
0
Fork 0
mirror of synced 2024-09-15 00:48:25 +12:00
appwrite/tests/benchmarks/Scopes/Scope.php

15 lines
310 B
PHP
Raw Normal View History

2022-12-16 06:38:25 +13:00
<?php
namespace Tests\Benchmarks\Scopes;
use PhpBench\Attributes\AfterMethods;
use PhpBench\Attributes\BeforeMethods;
use Tests\E2E\Scopes\Scope as E2EScope;
#[BeforeMethods(['setUp'])]
#[AfterMethods(['tearDown'])]
abstract class Scope extends E2EScope
{
protected $endpoint = 'http://localhost/v1';
}