Annotation of embedaddon/php/ext/imap/tests/imap_gc_error.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: imap_gc() 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_gc();
                     14: 
                     15: echo  "Checking with incorrect parameter type\n";
                     16: imap_gc('', false);
                     17: imap_gc(false, false);
                     18: 
                     19: require_once(dirname(__FILE__).'/imap_include.inc');
                     20: $stream_id = imap_open($default_mailbox, $username, $password) or 
                     21:        die("Cannot connect to mailbox $default_mailbox: " . imap_last_error());
                     22: imap_gc($stream_id, -1);
                     23: 
                     24: ?>
                     25: --EXPECTF--
                     26: Checking with no parameters
                     27: 
                     28: Warning: imap_gc() expects exactly 2 parameters, 0 given in %s on line %d
                     29: Checking with incorrect parameter type
                     30: 
                     31: Warning: imap_gc() expects parameter 1 to be resource, %unicode_string_optional% given in %s on line %d
                     32: 
                     33: Warning: imap_gc() expects parameter 1 to be resource, boolean given in %s on line %d
                     34: 
                     35: Warning: imap_gc(): invalid value for the flags parameter in %s on line %d

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