WorkspaceJsonBasicAuthTest.php in Drupal 9
File
core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceJsonBasicAuthTest.php
View source
<?php
namespace Drupal\Tests\workspaces\Functional\EntityResource;
use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
class WorkspaceJsonBasicAuthTest extends WorkspaceResourceTestBase {
use BasicAuthResourceTestTrait;
protected static $modules = [
'basic_auth',
];
protected $defaultTheme = 'stark';
protected static $format = 'json';
protected static $mimeType = 'application/json';
protected static $auth = 'basic_auth';
}