You are here

FileUploadJsonCookieTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/file/tests/src/Functional/FileUploadJsonCookieTest.php

File

core/modules/file/tests/src/Functional/FileUploadJsonCookieTest.php
View source
<?php

namespace Drupal\Tests\file\Functional;

use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
use Drupal\Tests\rest\Functional\FileUploadResourceTestBase;

/**
 * @group file
 */
class FileUploadJsonCookieTest extends FileUploadResourceTestBase {
  use CookieResourceTestTrait;

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected static $format = 'json';

  /**
   * {@inheritdoc}
   */
  protected static $mimeType = 'application/json';

  /**
   * {@inheritdoc}
   */
  protected static $auth = 'cookie';

}

Classes

Namesort descending Description
FileUploadJsonCookieTest @group file