riainvoice/vendor_old/omnipay/common/tests/Omnipay/Common/PaymentMethodTest.php
2021-10-01 23:56:38 +05:30

17 lines
324 B
PHP

<?php
namespace Omnipay\Common;
use Omnipay\Tests\TestCase;
class PaymentMethodTest extends TestCase
{
public function testConstruct()
{
$method = new PaymentMethod('99', 'Acme Corp');
$this->assertSame('99', $method->getId());
$this->assertSame('Acme Corp', $method->getName());
}
}