ViewXmlBasicAuthTest.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Tests\views\Functional\RestFile
core/modules/views/tests/src/Functional/Rest/ViewXmlBasicAuthTest.phpView source
<?php
namespace Drupal\Tests\views\Functional\Rest;
use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
/**
* @group rest
*/
class ViewXmlBasicAuthTest extends ViewResourceTestBase {
use BasicAuthResourceTestTrait;
use XmlEntityNormalizationQuirksTrait;
/**
* {@inheritdoc}
*/
public static $modules = [
'basic_auth',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected static $format = 'xml';
/**
* {@inheritdoc}
*/
protected static $mimeType = 'text/xml; charset=UTF-8';
/**
* {@inheritdoc}
*/
protected static $auth = 'basic_auth';
}
Classes
Name | Description |
---|---|
ViewXmlBasicAuthTest | @group rest |