0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 19:15:17 +00:00
phpv8/tests/die.phpt
2014-12-10 01:10:30 +01:00

18 lines
329 B
PHP

--TEST--
Test V8::executeString() : Handle die() gracefully
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$v8 = new V8Js();
$v8->foo = function() {
echo "Hallo\n";
die("Goodbye cruel world!\n");
};
$v8->executeString('PHP.foo();');
?>
===EOF===
--EXPECT--
Hallo
Goodbye cruel world!