ACC SHELL

Path : /srv/www/vhosts/svj-u-leskavy/vendor/nette/tester/tests/Framework/
File Upload :
Current File : /srv/www/vhosts/svj-u-leskavy/vendor/nette/tester/tests/Framework/Dumper.toPhp.phpt

<?php

use Tester\Assert,
	Tester\Dumper;

require __DIR__ . '/../bootstrap.php';


class Test
{
	public $x = array(10, NULL);
	private $y = 'hello';
	protected $z = 30.0;
}


Assert::match( 'NULL', Dumper::toPhp(NULL) );
Assert::match( 'TRUE', Dumper::toPhp(TRUE) );
Assert::match( 'FALSE', Dumper::toPhp(FALSE) );
Assert::match( '0', Dumper::toPhp(0) );
Assert::match( '1', Dumper::toPhp(1) );
Assert::match( '0.0', Dumper::toPhp(0.0) );
Assert::match( '0.1', Dumper::toPhp(0.1) );
Assert::match( "''", Dumper::toPhp('') );
Assert::match( "' '", Dumper::toPhp(' ') );
Assert::match( "'0'", Dumper::toPhp('0') );
Assert::match( '"\\x00"', Dumper::toPhp("\x00") );
Assert::match( "'	'", Dumper::toPhp("\t") );
Assert::match( '"\\xff"', Dumper::toPhp("\xFF") );
Assert::match( '"multi\nline"', Dumper::toPhp("multi\nline") );
Assert::match( "'Iñtërnâtiônàlizætiøn'", Dumper::toPhp("I\xc3\xb1t\xc3\xabrn\xc3\xa2ti\xc3\xb4n\xc3\xa0liz\xc3\xa6ti\xc3\xb8n") );
Assert::match( 'array(
	1,
	\'hello\',
	"\r" => array(),
	array(1, 2),
	array(1 => 1, 2, 3, 4, 5, 6, 7),
)', Dumper::toPhp(array(1, 'hello', "\r" => array(), array(1, 2), array(1 => 1, 2, 3, 4, 5, 6, 7))) );

Assert::match( "/* resource stream */", Dumper::toPhp(fopen(__FILE__, 'r')) );
Assert::match( '(object) array()', Dumper::toPhp((object) NULL) );
Assert::match( "(object) array(
	'a' => 'b',
)", Dumper::toPhp((object) array('a' => 'b')) );

Assert::match( "Test::__set_state(array(
	'x' => array(10, NULL),
	'y' => 'hello',
	'z' => 30.0,
))", Dumper::toPhp(new Test) );

ACC SHELL 2018