64 lines
1.3 KiB
PHP
64 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\Confirmation;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use YooKassa\Helpers\Random;
|
|
use YooKassa\Model\Confirmation\AbstractConfirmation;
|
|
|
|
abstract class AbstractConfirmationTest extends TestCase
|
|
{
|
|
/**
|
|
* @return AbstractConfirmation
|
|
*/
|
|
abstract protected function getTestInstance();
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
abstract protected function getExpectedType();
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function testGetType()
|
|
{
|
|
$instance = $this->getTestInstance();
|
|
self::assertEquals($this->getExpectedType(), $instance->getType());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidTypeDataProvider
|
|
* @expectedException \InvalidArgumentException
|
|
* @param $value
|
|
*/
|
|
public function testInvalidType($value)
|
|
{
|
|
new TestConfirmation($value);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @throws \Exception
|
|
*/
|
|
public function invalidTypeDataProvider()
|
|
{
|
|
return array(
|
|
array(''),
|
|
array(null),
|
|
array(Random::str(40)),
|
|
array(0),
|
|
array(array()),
|
|
array(new \stdClass()),
|
|
);
|
|
}
|
|
}
|
|
|
|
class TestConfirmation extends AbstractConfirmation
|
|
{
|
|
public function __construct($type)
|
|
{
|
|
$this->setType($type);
|
|
}
|
|
}
|