26 lines
511 B
PHP
26 lines
511 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\YooKassa\Model\PaymentMethod;
|
||
|
|
|
||
|
|
use YooKassa\Model\PaymentMethod\PaymentMethodGooglePay;
|
||
|
|
use YooKassa\Model\PaymentMethodType;
|
||
|
|
|
||
|
|
class PaymentMethodGooglePayTest extends AbstractPaymentMethodTest
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return PaymentMethodGooglePay
|
||
|
|
*/
|
||
|
|
protected function getTestInstance()
|
||
|
|
{
|
||
|
|
return new PaymentMethodGooglePay();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
protected function getExpectedType()
|
||
|
|
{
|
||
|
|
return PaymentMethodType::GOOGLE_PAY;
|
||
|
|
}
|
||
|
|
}
|