You are here

protected function MassContactTest::setUp in Mass Contact 8

Overrides MassContactTestBase::setUp

File

tests/src/Kernel/MassContactTest.php, line 35

Class

MassContactTest
Tests for the mass contact service.

Namespace

Drupal\Tests\mass_contact\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('user');
  $this
    ->installConfig([
    'mass_contact',
  ]);
  $this
    ->installSchema('system', [
    'sequences',
  ]);
  $this->massContact = $this->container
    ->get('mass_contact');
}