Annotation of embedaddon/php/ext/spl/tests/iterator_056.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SPL: FilterIterator::__construct(void)
        !             3: --CREDITS--
        !             4: Sebastian Schürmann
        !             5: --FILE--
        !             6: <?php
        !             7: class myFilterIterator extends FilterIterator {
        !             8:        function accept() {
        !             9:                
        !            10:        }
        !            11: }
        !            12: try {
        !            13:        $it = new myFilterIterator();   
        !            14: } catch (InvalidArgumentException $e) {
        !            15:        echo 'InvalidArgumentException thrown';
        !            16: }
        !            17: ?>
        !            18: --EXPECT--
        !            19: InvalidArgumentException thrown

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