oauth tests setup

This commit is contained in:
Matej Bačo
2026-04-27 15:51:54 +02:00
parent b28b851bb2
commit ee1eea5c0c
3 changed files with 36 additions and 0 deletions
@@ -0,0 +1,8 @@
<?php
namespace Tests\E2E\Services\Project;
trait OAuth2Base
{
}
@@ -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 OAuth2ConsoleClientTest extends Scope
{
use OAuth2Base;
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 OAuth2CustomServerTest extends Scope
{
use OAuth2Base;
use ProjectCustom;
use SideServer;
}