function PaymentLineItemsDisplayTest::testCreate in Payment 8.2
@covers ::__construct @covers ::create
File
- tests/
src/ Unit/ Element/ PaymentLineItemsDisplayTest.php, line 62
Class
- PaymentLineItemsDisplayTest
- @coversDefaultClass \Drupal\payment\Element\PaymentLineItemsDisplay
Namespace
Drupal\Tests\payment\Unit\ElementCode
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 = [];
$plugin_id = $this
->randomMachineName();
$plugin_definition = [];
$sut = PaymentLineItemsDisplay::create($container, $configuration, $plugin_id, $plugin_definition);
$this
->assertInstanceOf(PaymentLineItemsDisplay::class, $sut);
}