2020-01-11 13:58:02 +00:00
|
|
|
<?php
|
|
|
|
|
|
2020-01-12 06:35:37 +00:00
|
|
|
namespace Tests\E2E\Services\Account;
|
2020-01-11 13:58:02 +00:00
|
|
|
|
2023-01-11 12:24:37 +00:00
|
|
|
use Appwrite\Extend\Exception;
|
2020-01-11 13:58:02 +00:00
|
|
|
use Tests\E2E\Scopes\Scope;
|
|
|
|
|
use Tests\E2E\Scopes\ProjectConsole;
|
|
|
|
|
use Tests\E2E\Scopes\SideClient;
|
2023-02-05 20:07:46 +00:00
|
|
|
use Utopia\Database\Helpers\ID;
|
2023-01-11 12:24:37 +00:00
|
|
|
use Tests\E2E\Client;
|
2023-08-04 19:15:32 +00:00
|
|
|
use Utopia\Database\Validator\Datetime as DatetimeValidator;
|
2020-01-11 13:58:02 +00:00
|
|
|
|
|
|
|
|
class AccountConsoleClientTest extends Scope
|
|
|
|
|
{
|
2023-01-11 12:39:56 +00:00
|
|
|
use AccountBase;
|
2020-01-11 13:58:02 +00:00
|
|
|
use ProjectConsole;
|
|
|
|
|
use SideClient;
|
2022-05-23 14:54:50 +00:00
|
|
|
}
|