You are here

BlazyManagerBaseUnitTest.php in Blazy 8

Same filename and directory in other branches
  1. 8.2 tests/src/Unit/BlazyManagerBaseUnitTest.php

File

tests/src/Unit/BlazyManagerBaseUnitTest.php
View source
<?php

namespace Drupal\Tests\blazy\Unit;

use Drupal\blazy\BlazyManager;
use Drupal\Tests\UnitTestCase;
use Drupal\Tests\blazy\Traits\BlazyUnitTestTrait;
use Drupal\Tests\blazy\Traits\BlazyManagerUnitTestTrait;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Tests the Blazy manager base.
 *
 * @coversDefaultClass \Drupal\blazy\BlazyManagerBase
 * @group blazy
 */
class BlazyManagerBaseUnitTest extends UnitTestCase {
  use BlazyUnitTestTrait;
  use BlazyManagerUnitTestTrait;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->setUpUnitServices();
  }

  /**
   * @covers ::create
   * @covers ::__construct
   */
  public function testBlazyManagerCreate() {
    $container = $this
      ->createMock(ContainerInterface::class);
    $exception = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE;
    $map = [
      [
        'entity_type.manager',
        $exception,
        $this->entityTypeManager,
      ],
      [
        'module_handler',
        $exception,
        $this->moduleHandler,
      ],
      [
        'renderer',
        $exception,
        $this->renderer,
      ],
      [
        'config.factory',
        $exception,
        $this->configFactory,
      ],
      [
        'cache.default',
        $exception,
        $this->cache,
      ],
    ];
    $container
      ->expects($this
      ->any())
      ->method('get')
      ->willReturnMap($map);
    $blazyManager = BlazyManager::create($container);
    $this
      ->assertInstanceOf(BlazyManager::class, $blazyManager);
  }

}

Classes

Namesort descending Description
BlazyManagerBaseUnitTest Tests the Blazy manager base.