Platform API tests

This commit is contained in:
Matej Bačo
2026-03-25 15:47:11 +01:00
parent ae99d59aba
commit 008110b3f7
3 changed files with 1262 additions and 0 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,14 @@
<?php
namespace Tests\E2E\Services\Project;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideConsole;
class PlatformsConsoleClientTest extends Scope
{
use PlatformsBase;
use ProjectCustom;
use SideConsole;
}
@@ -0,0 +1,14 @@
<?php
namespace Tests\E2E\Services\Project;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer;
class PlatformsCustomServerTest extends Scope
{
use PlatformsBase;
use ProjectCustom;
use SideServer;
}