0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 19:15:17 +00:00
phpv8/tests/construct.phpt

25 lines
395 B
PHP

--TEST--
Test V8::executeString() : Calling construct twice
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$JS = <<< EOT
print('Hello' + ' ' + 'World!' + "\\n");
EOT;
$v8 = new V8Js("myObj");
$v8->__construct();
try {
$v8->executeString($JS, 'basic.js');
} catch (V8JsScriptException $e) {
var_dump($e);
}
?>
===EOF===
--EXPECT--
Hello World!
===EOF===