You are here

function CurrencyFormTest::testCreate in Currency 8.3

@covers ::create @covers ::__construct

File

tests/src/Unit/Entity/Currency/CurrencyFormTest.php, line 99

Class

CurrencyFormTest
@coversDefaultClass \Drupal\currency\Entity\Currency\CurrencyForm

Namespace

Drupal\Tests\currency\Unit\Entity\Currency

Code

function testCreate() {
  $entity_type_manager = $this
    ->createMock(EntityTypeManagerInterface::class);
  $entity_type_manager
    ->expects($this
    ->once())
    ->method('getStorage')
    ->with('currency')
    ->willReturn($this->currencyStorage);
  $container = $this
    ->createMock(ContainerInterface::class);
  $map = array(
    array(
      'entity_type.manager',
      ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
      $entity_type_manager,
    ),
    array(
      'currency.input',
      ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
      $this->inputParser,
    ),
    array(
      'link_generator',
      ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
      $this->linkGenerator,
    ),
    array(
      'string_translation',
      ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
      $this->stringTranslation,
    ),
  );
  $container
    ->expects($this
    ->any())
    ->method('get')
    ->willReturnMap($map);
  $sut = CurrencyForm::create($container);
  $this
    ->assertInstanceOf(CurrencyForm::class, $sut);
}