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