Annotation of embedaddon/php/ext/reflection/tests/ReflectionClass_getExtensionName_variation.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: ReflectionClass::getExtensionName() method - variation test for getExtensionName()
! 3: --CREDITS--
! 4: Rein Velt <rein@velt.org>
! 5: #testFest Roosendaal 2008-05-10
! 6: --FILE--
! 7: <?php
! 8:
! 9: class myClass
! 10: {
! 11: public $varX;
! 12: public $varY;
! 13: }
! 14: $rc=new reflectionClass('myClass');
! 15: var_dump( $rc->getExtensionName()) ;
! 16: ?>
! 17: --EXPECT--
! 18: bool(false)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>