1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Multishipping\Block\Checkout\Address;
- use Magento\TestFramework\Helper\Bootstrap;
- /**
- * @magentoAppArea frontend
- */
- class SelectTest extends \PHPUnit\Framework\TestCase
- {
- /** @var \Magento\Multishipping\Block\Checkout\Address\Select */
- protected $_selectBlock;
- protected function setUp()
- {
- $this->_selectBlock = Bootstrap::getObjectManager()->create(
- \Magento\Multishipping\Block\Checkout\Address\Select::class
- );
- parent::setUp();
- }
- /**
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoDataFixture Magento/Customer/_files/customer_two_addresses.php
- */
- public function testGetAddressAsHtml()
- {
- /** @var \Magento\Customer\Api\AddressRepositoryInterface $addressRepository */
- $addressRepository = Bootstrap::getObjectManager()->create(
- \Magento\Customer\Api\AddressRepositoryInterface::class
- );
- $fixtureAddressId = 1;
- $address = $addressRepository->getById($fixtureAddressId);
- $addressAsHtml = $this->_selectBlock->getAddressAsHtml($address);
- $this->assertEquals(
- "John Smith<br />CompanyName<br />Green str, 67<br />CityM, Alabama, 75477"
- . "<br />United States<br />T: <a href=\"tel:3468676\">3468676</a>",
- str_replace("\n", '', $addressAsHtml),
- "Address was represented as HTML incorrectly"
- );
- }
- }
|