2026-04-23 13:19:49 +00:00
|
|
|
<?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
|
|
|
|
2026-04-23 14:06:45 +00:00
|
|
|
// Placeholder until this scope has custom server-specific coverage.
|
2026-04-23 13:57:09 +00:00
|
|
|
// You can remove this after adding some custom server tests, or some project base tests
|
|
|
|
|
public function testProjectServerLogic(): void
|
|
|
|
|
{
|
2026-04-23 14:06:45 +00:00
|
|
|
$this->expectNotToPerformAssertions();
|
2026-04-23 13:57:09 +00:00
|
|
|
}
|
2026-04-23 13:19:49 +00:00
|
|
|
}
|