You are here

protected function UserCreateTest::setUp in Apigee Edge 8

Overrides KernelTestBase::setUp

File

tests/src/Kernel/UserCreateTest.php, line 64

Class

UserCreateTest
Test create operations for User entity type.

Namespace

Drupal\Tests\apigee_edge\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', [
    'sequences',
  ]);
  $this
    ->installSchema('user', [
    'users_data',
  ]);
  $this
    ->installEntitySchema('user');
  $this
    ->apigeeTestHelperSetup();
}