diff --git a/tests/derived_class_properties.phpt b/tests/derived_class_properties.phpt new file mode 100644 index 0000000..c1a24ce --- /dev/null +++ b/tests/derived_class_properties.phpt @@ -0,0 +1,23 @@ +--TEST-- +Test V8::executeString() : Properties on derived class +--SKIPIF-- + +--FILE-- +testing = 23; + } +} + +$v8 = new V8Wrapper(); +$v8->executeString('print("foo\n");'); +?> +===EOF=== +--EXPECT-- +foo +===EOF===