mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
22 lines
533 B
PHP
22 lines
533 B
PHP
<?php
|
|
|
|
namespace Tests\E2E\Services\Project;
|
|
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
|
use Tests\E2E\Scopes\Scope;
|
|
use Tests\E2E\Scopes\SideServer;
|
|
|
|
class ProjectCustomServerTest extends Scope
|
|
{
|
|
use ProjectBase;
|
|
use ProjectCustom;
|
|
use SideServer;
|
|
|
|
// Placeholder until this scope has custom server-specific coverage.
|
|
// You can remove this after adding some custom server tests, or some project base tests
|
|
public function testProjectServerLogic(): void
|
|
{
|
|
$this->expectNotToPerformAssertions();
|
|
}
|
|
}
|