ViewJsonBasicAuthTest.php in Drupal 8
File
core/modules/views/tests/src/Functional/Rest/ViewJsonBasicAuthTest.php
View source
<?php
namespace Drupal\Tests\views\Functional\Rest;
use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
class ViewJsonBasicAuthTest extends ViewResourceTestBase {
use BasicAuthResourceTestTrait;
public static $modules = [
'basic_auth',
];
protected $defaultTheme = 'stark';
protected static $format = 'json';
protected static $mimeType = 'application/json';
protected static $auth = 'basic_auth';
}