Annotation of embedaddon/php/ext/imap/tests/imap_num_recent_error.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: imap_expunge() incorrect parameter count
        !             3: --CREDITS--
        !             4: Paul Sohier
        !             5: #phptestfest utrecht
        !             6: --SKIPIF--
        !             7: <?php
        !             8: require_once(dirname(__FILE__).'/skipif.inc');
        !             9: ?>
        !            10: --FILE--
        !            11: <?php
        !            12: echo "Checking with no parameters\n";
        !            13: imap_expunge();
        !            14: 
        !            15: echo  "Checking with incorrect parameter type\n";
        !            16: imap_expunge('');
        !            17: imap_expunge(false);
        !            18: ?>
        !            19: --EXPECTF--
        !            20: Checking with no parameters
        !            21: 
        !            22: Warning: imap_expunge() expects exactly 1 parameter, 0 given in %s on line %d
        !            23: Checking with incorrect parameter type
        !            24: 
        !            25: Warning: imap_expunge() expects parameter 1 to be resource, %unicode_string_optional% given in %s on line %d
        !            26: 
        !            27: Warning: imap_expunge() expects parameter 1 to be resource, boolean given in %s on line %d

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