Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / file / tests / src / Kernel / Migrate / MigrateFileStubTest.php
1 <?php
2
3 namespace Drupal\Tests\file\Kernel\Migrate;
4
5 use Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase;
6 use Drupal\migrate_drupal\Tests\StubTestTrait;
7
8 /**
9  * Test stub creation for file entities.
10  *
11  * @group file
12  */
13 class MigrateFileStubTest extends MigrateDrupalTestBase {
14
15   use StubTestTrait;
16
17   /**
18    * {@inheritdoc}
19    */
20   public static $modules = ['file'];
21
22   /**
23    * {@inheritdoc}
24    */
25   protected function setUp() {
26     parent::setUp();
27     $this->installEntitySchema('file');
28   }
29
30   /**
31    * Tests creation of file stubs.
32    */
33   public function testStub() {
34     $this->performStubTest('file');
35   }
36
37 }