Mercurial > hg > isophonics-drupal-site
view core/modules/user/tests/src/Kernel/Migrate/MigrateUserStubTest.php @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Tests\user\Kernel\Migrate; use Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase; use Drupal\migrate_drupal\Tests\StubTestTrait; /** * Test stub creation for user entities. * * @group user */ class MigrateUserStubTest extends MigrateDrupalTestBase { use StubTestTrait; /** * {@inheritdoc} */ public static $modules = ['user']; /** * {@inheritdoc} */ protected function setUp() { parent::setUp(); $this->installEntitySchema('user'); $this->installSchema('system', ['sequences']); } /** * Tests creation of user stubs. */ public function testStub() { $this->performStubTest('user'); } }