mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-24 14:58:08 +00:00
25 lines
510 B
PHP
25 lines
510 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;
|
|
}
|
|
} |