Annotation of embedaddon/php/ext/reflection/tests/ReflectionProperty_export_basic.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test ReflectionProperty::export() usage.
        !             3: --FILE--
        !             4: <?php
        !             5: 
        !             6: class TestClass {
        !             7:     public $proper = 5;
        !             8: }
        !             9: 
        !            10: var_dump(ReflectionProperty::export('TestClass', 'proper'));
        !            11: 
        !            12: ?>
        !            13: --EXPECT--
        !            14: Property [ <default> public $proper ]
        !            15: 
        !            16: NULL

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>