EntityTestLabelXmlBasicAuthTest.php in Drupal 8
File
core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelXmlBasicAuthTest.php
View source
<?php
namespace Drupal\Tests\entity_test\Functional\Rest;
use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
class EntityTestLabelXmlBasicAuthTest extends EntityTestLabelResourceTestBase {
use BasicAuthResourceTestTrait;
use XmlEntityNormalizationQuirksTrait;
public static $modules = [
'basic_auth',
];
protected $defaultTheme = 'stark';
protected static $format = 'xml';
protected static $mimeType = 'text/xml; charset=UTF-8';
protected static $auth = 'basic_auth';
}