appwrite/tests/e2e/Services/Project/ProjectCustomServerTest.php

22 lines
518 B
PHP
Raw Normal View History

<?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;
2026-04-23 13:57:09 +00:00
// Just a blank test so we dont have warning about empty test class
// You can remove this after adding some custom server tests, or some project base tests
public function testProjectServerLogic(): void
{
$this->assertTrue(true);
}
}