![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-webapi/Test/Unit/Model/Soap/ |
<?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); } }