ElementTest.php 441 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Shipping\Test\Unit\Model\Simplexml;
  7. class ElementTest extends \PHPUnit\Framework\TestCase
  8. {
  9. public function testXmlentities()
  10. {
  11. $xmlElement = new \Magento\Shipping\Model\Simplexml\Element('<xml></xml>');
  12. $this->assertEquals('&amp;copy;&amp;', $xmlElement->xmlentities('&copy;&amp;'));
  13. }
  14. }