File: /var/www/vhosts/greenclinic.kz/test.greenclinic.kz/vendor/october/rain/tests/TestCase.php
<?php
class TestCase extends PHPUnit_Framework_TestCase
{
/**
* Creates the application.
*
* @return Symfony\Component\HttpKernel\HttpKernelInterface
*/
public function createApplication()
{
}
public function testNothing()
{
// Test nothing
}
protected static function callProtectedMethod($object, $name, $params = [])
{
$className = get_class($object);
$class = new ReflectionClass($className);
$method = $class->getMethod($name);
$method->setAccessible(true);
return $method->invokeArgs($object, $params);
}
}