| Current Path : /home/rtorresani/www/vendor/magento/module-webapi/Test/Unit/Model/Soap/ |
| Current File : //home/rtorresani/www/vendor/magento/module-webapi/Test/Unit/Model/Soap/WsdlFactoryTest.php |
<?php declare(strict_types=1);
/**
* Test \Magento\Webapi\Model\Soap\WsdlFactory
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Webapi\Test\Unit\Model\Soap;
use Magento\Framework\ObjectManagerInterface;
use Magento\Webapi\Model\Soap\Wsdl;
use Magento\Webapi\Model\Soap\WsdlFactory;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class WsdlFactoryTest extends TestCase
{
/** @var MockObject */
protected $_objectManagerMock;
/** @var WsdlFactory */
protected $_soapWsdlFactory;
protected function setUp(): void
{
$this->_objectManagerMock = $this->getMockForAbstractClass(ObjectManagerInterface::class);
$this->_soapWsdlFactory = new WsdlFactory($this->_objectManagerMock);
parent::setUp();
}
protected function tearDown(): void
{
unset($this->_objectManagerMock);
unset($this->_soapWsdlFactory);
parent::tearDown();
}
public function testCreate()
{
$wsdlName = 'wsdlName';
$endpointUrl = 'endpointUrl';
$this->_objectManagerMock->expects(
$this->once()
)->method(
'create'
)->with(
Wsdl::class,
['name' => $wsdlName, 'uri' => $endpointUrl]
);
$this->_soapWsdlFactory->create($wsdlName, $endpointUrl);
}
}