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\KernelCode
protected function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', [
    'sequences',
  ]);
  $this
    ->installSchema('user', [
    'users_data',
  ]);
  $this
    ->installEntitySchema('user');
  $this
    ->apigeeTestHelperSetup();
}