mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-28 02:58:10 +00:00
Обновленная версия SDK
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\YooKassa\Model\PaymentMethod;
|
||||
|
||||
use YooKassa\Model\PaymentMethod\PaymentMethodMobileBalance;
|
||||
|
||||
abstract class AbstractPaymentMethodPhoneTest extends AbstractPaymentMethodTest
|
||||
{
|
||||
/**
|
||||
* @dataProvider validPhoneDataProvider
|
||||
* @param $value
|
||||
*/
|
||||
public function testGetSetPhone($value)
|
||||
{
|
||||
/** @var PaymentMethodMobileBalance $instance */
|
||||
$instance = $this->getTestInstance();
|
||||
|
||||
self::assertNull($instance->getPhone());
|
||||
self::assertNull($instance->phone);
|
||||
|
||||
$instance->setPhone($value);
|
||||
self::assertEquals($value, $instance->getPhone());
|
||||
self::assertEquals($value, $instance->phone);
|
||||
|
||||
$instance = $this->getTestInstance();
|
||||
$instance->phone = $value;
|
||||
self::assertEquals($value, $instance->getPhone());
|
||||
self::assertEquals($value, $instance->phone);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider invalidPhoneDataProvider
|
||||
* @expectedException \InvalidArgumentException
|
||||
* @param $value
|
||||
*/
|
||||
public function testSetInvalidPhone($value)
|
||||
{
|
||||
/** @var PaymentMethodMobileBalance $instance */
|
||||
$instance = $this->getTestInstance();
|
||||
$instance->setPhone($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider invalidPhoneDataProvider
|
||||
* @expectedException \InvalidArgumentException
|
||||
* @param $value
|
||||
*/
|
||||
public function testSetterInvalidPhone($value)
|
||||
{
|
||||
/** @var PaymentMethodMobileBalance $instance */
|
||||
$instance = $this->getTestInstance();
|
||||
$instance->phone = $value;
|
||||
}
|
||||
|
||||
public function validPhoneDataProvider()
|
||||
{
|
||||
return array(
|
||||
array('0123'),
|
||||
array('45678'),
|
||||
array('901234'),
|
||||
array('5678901'),
|
||||
array('23456789'),
|
||||
array('012345678'),
|
||||
array('9012345678'),
|
||||
array('90123456789'),
|
||||
array('012345678901'),
|
||||
array('5678901234567'),
|
||||
array('89012345678901'),
|
||||
array('234567890123456'),
|
||||
);
|
||||
}
|
||||
|
||||
public function invalidPhoneDataProvider()
|
||||
{
|
||||
return array(
|
||||
array(null),
|
||||
array(''),
|
||||
array(true),
|
||||
array(false),
|
||||
array(array()),
|
||||
array(new \stdClass()),
|
||||
array('2345678901234567'),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user