EntityViewModeXmlBasicAuthTest.php

Namespace

Drupal\FunctionalTests\Rest

File

core/tests/Drupal/FunctionalTests/Rest/EntityViewModeXmlBasicAuthTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\FunctionalTests\Rest;

use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
use PHPUnit\Framework\Attributes\Group;

/**
 * Tests Entity View Mode Xml Basic Auth.
 */
class EntityViewModeXmlBasicAuthTest extends EntityViewModeResourceTestBase {
  use BasicAuthResourceTestTrait;
  use XmlEntityNormalizationQuirksTrait;
  
  /**
   * {@inheritdoc}
   */
  protected 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

Title Deprecated Summary
EntityViewModeXmlBasicAuthTest Tests Entity View Mode Xml Basic Auth.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.