Files
php-qrcode/tests/QRTestAbstract.php
codemasher 1ba7f204e1 😭 php 5.6 compat
2018-01-19 05:33:41 +01:00

75 lines
1.3 KiB
PHP

<?php
/**
* Class QRTestAbstract
*
* @filesource QRTestAbstract.php
* @created 17.11.2017
* @package chillerlan\QRCodeTest
* @author Smiley <smiley@chillerlan.net>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\QRCodeTest;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use ReflectionMethod;
use ReflectionProperty;
abstract class QRTestAbstract extends TestCase{
/**
* @var \ReflectionClass
*/
protected $reflection;
/**
* @var string
*/
protected $FQCN;
protected function setUp(){
$this->reflection = new ReflectionClass($this->FQCN);
}
/**
* @param string $method
*
* @return \ReflectionMethod
*/
protected function getMethod($method) {
$method = $this->reflection->getMethod($method);
$method->setAccessible(true);
return $method;
}
/**
* @param string $property
*
* @return \ReflectionProperty
*/
protected function getProperty($property){
$property = $this->reflection->getProperty($property);
$property->setAccessible(true);
return $property;
}
/**
* @param $object
* @param string $property
* @param $value
*
* @return void
*/
protected function setProperty($object, $property, $value){
$property = $this->getProperty($property);
$property->setAccessible(true);
$property->setValue($object, $value);
}
}