ok

Mini Shell

Direktori : /opt/cloudlinux/alt-php56/root/usr/share/pear/test/imagick/tests/
Upload File :
Current File : //opt/cloudlinux/alt-php56/root/usr/share/pear/test/imagick/tests/011_polygon.phpt

--TEST--
Test polygon method arguments
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php

$im = new Imagick();
$draw = new ImagickDraw();

try {
	$draw->polygon(array( 
					array('x' => 1, 'y' => 2),
					array('x' => 'hello', 'y' => array())
			 		));

	echo "pass\n";

} catch (Exception $e) {
	echo "fail\n";
}

try {
	$draw->polygon(array(array()));
	echo "fail\n";
} catch (ImagickDrawException $e) {
	echo "pass\n";
}

?>
--EXPECTF--
pass
pass

Zerion Mini Shell 1.0