You are here

function CurrencySignTest::testCreate in Currency 8.3

@covers ::create @covers ::__construct

File

tests/src/Unit/Element/CurrencySignTest.php, line 68

Class

CurrencySignTest
@coversDefaultClass \Drupal\currency\Element\CurrencySign

Namespace

Drupal\Tests\currency\Unit\Element

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(
      'string_translation',
      ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
      $this->stringTranslation,
    ),
  );
  $container
    ->expects($this
    ->any())
    ->method('get')
    ->willReturnMap($map);
  $configuration = array();
  $plugin_id = $this
    ->randomMachineName();
  $plugin_definition = array();
  $sut = CurrencySign::create($container, $configuration, $plugin_id, $plugin_definition);
  $this
    ->assertInstanceOf(CurrencySign::class, $sut);
}