You are here

protected function MailManagerTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Mail/MailManagerTest.php \Drupal\Tests\Core\Mail\MailManagerTest::setUp()
  2. 9 core/tests/Drupal/Tests/Core/Mail/MailManagerTest.php \Drupal\Tests\Core\Mail\MailManagerTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Mail/MailManagerTest.php, line 84
Contains \Drupal\Tests\Core\Mail\MailManagerTest.

Class

MailManagerTest
@coversDefaultClass \Drupal\Core\Mail\MailManager @group Mail

Namespace

Drupal\Tests\Core\Mail

Code

protected function setUp() : void {
  parent::setUp();

  // Prepare the default constructor arguments required by MailManager.
  $this->cache = $this
    ->createMock('Drupal\\Core\\Cache\\CacheBackendInterface');
  $this->moduleHandler = $this
    ->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');

  // Mock a Discovery object to replace AnnotationClassDiscovery.
  $this->discovery = $this
    ->createMock('Drupal\\Component\\Plugin\\Discovery\\DiscoveryInterface');
  $this->discovery
    ->expects($this
    ->any())
    ->method('getDefinitions')
    ->will($this
    ->returnValue($this->definitions));
}