Files
appwrite/tests/e2e/Services/Projects/ProjectsCustomServerTest.php
T
Torsten Dittmann 0a1d572c72 chore: run formatter
2024-03-06 18:34:21 +01:00

19 lines
322 B
PHP

<?php
namespace Tests\E2E\Services\Projects;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer;
class ProjectsCustomServerTest extends Scope
{
use ProjectCustom;
use SideServer;
public function testMock()
{
$this->assertEquals(true, true);
}
}