0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 19:15:17 +00:00
phpv8/tests/issue_183_basic.phpt
2016-01-07 13:44:40 +01:00

28 lines
362 B
PHP

--TEST--
Test V8::executeString() : Method access on derived classes
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
class Foo extends \V8Js
{
public function hello()
{
print("Hello World\n");
}
}
$JS = <<< EOT
PHP.hello();
EOT;
$v8 = new Foo();
$v8->executeString($JS);
?>
===EOF===
--EXPECT--
Hello World
===EOF===