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