File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/common/tests/Omnipay/Common/GatewayFactoryTest.php
Back
<?php namespace Omnipay\Common; use Mockery as m; use Omnipay\Tests\TestCase; class GatewayFactoryTest extends TestCase { public static function setUpBeforeClass() { m::mock('alias:Omnipay\\SpareChange\\TestGateway'); } public function setUp() { $this->factory = new GatewayFactory; } public function testReplace() { $gateways = array('Foo'); $this->factory->replace($gateways); $this->assertSame($gateways, $this->factory->all()); } public function testRegister() { $this->factory->register('Bar'); $this->assertSame(array('Bar'), $this->factory->all()); } public function testRegisterExistingGateway() { $this->factory->register('Milky'); $this->factory->register('Bar'); $this->factory->register('Bar'); $this->assertSame(array('Milky', 'Bar'), $this->factory->all()); } public function testFindRegistersAvailableGateways() { $this->factory = m::mock('Omnipay\Common\GatewayFactory[getSupportedGateways]'); $this->factory->shouldReceive('getSupportedGateways')->once() ->andReturn(array('SpareChange_Test')); $gateways = $this->factory->find(); $this->assertContains('SpareChange_Test', $gateways); $this->assertContains('SpareChange_Test', $this->factory->all()); } public function testFindIgnoresUnavailableGateways() { $this->factory = m::mock('Omnipay\Common\GatewayFactory[getSupportedGateways]'); $this->factory->shouldReceive('getSupportedGateways')->once() ->andReturn(array('SpareChange_Gone')); $gateways = $this->factory->find(); $this->assertEmpty($gateways); $this->assertEmpty($this->factory->all()); } public function testCreateShortName() { $gateway = $this->factory->create('SpareChange_Test'); $this->assertInstanceOf('\\Omnipay\\SpareChange\\TestGateway', $gateway); } public function testCreateFullyQualified() { $gateway = $this->factory->create('\\Omnipay\\SpareChange\\TestGateway'); $this->assertInstanceOf('\\Omnipay\\SpareChange\\TestGateway', $gateway); } /** * @expectedException \Omnipay\Common\Exception\RuntimeException * @expectedExceptionMessage Class '\Omnipay\Invalid\Gateway' not found */ public function testCreateInvalid() { $gateway = $this->factory->create('Invalid'); } public function testGetSupportedGateways() { $gateways = $this->factory->getSupportedGateways(); $this->assertContains('Stripe', $gateways); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.04 |
proxy
|
phpinfo
|
Settings