EntityViewDisplayHalJsonBasicAuthTest.php 472 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace Drupal\FunctionalTests\Hal;
  3. use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
  4. /**
  5. * @group hal
  6. */
  7. class EntityViewDisplayHalJsonBasicAuthTest extends EntityViewDisplayHalJsonAnonTest {
  8. use BasicAuthResourceTestTrait;
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public static $modules = ['basic_auth'];
  13. /**
  14. * {@inheritdoc}
  15. */
  16. protected $defaultTheme = 'stark';
  17. /**
  18. * {@inheritdoc}
  19. */
  20. protected static $auth = 'basic_auth';
  21. }