UserJsonBasicAuthDecoratedTest.php

Namespace

Drupal\Tests\user\Functional\Rest

File

core/modules/user/tests/src/Functional/Rest/UserJsonBasicAuthDecoratedTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\user\Functional\Rest;

use Drupal\user_auth_decorator_test\UserAuthDecorator;

/**
 * Run UserJsonBasicAuthTest with a user.auth decorator.
 *
 * @group rest
 * @group #slow
 */
class UserJsonBasicAuthDecoratedTest extends UserJsonBasicAuthTest {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'user_auth_decorator_test',
  ];
  
  /**
   * Test that the UserAuthDecorator is providing user.auth.
   */
  public function testServiceDecorated() : void {
    $service = \Drupal::service('user.auth');
    $this->assertInstanceOf(UserAuthDecorator::class, $service);
  }

}

Classes

Title Deprecated Summary
UserJsonBasicAuthDecoratedTest Run UserJsonBasicAuthTest with a user.auth decorator.

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