Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / file / tests / src / Functional / FileUploadJsonCookieTest.php
1 <?php
2
3 namespace Drupal\Tests\file\Functional;
4
5 use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
6 use Drupal\Tests\rest\Functional\FileUploadResourceTestBase;
7
8 /**
9  * @group file
10  */
11 class FileUploadJsonCookieTest extends FileUploadResourceTestBase {
12
13   use CookieResourceTestTrait;
14
15   /**
16    * {@inheritdoc}
17    */
18   protected static $format = 'json';
19
20   /**
21    * {@inheritdoc}
22    */
23   protected static $mimeType = 'application/json';
24
25   /**
26    * {@inheritdoc}
27    */
28   protected static $auth = 'cookie';
29
30 }