xref: /PHP-7.4/ext/imap/tests/imap_ping_error.phpt (revision 26dfce7f)
1--TEST--
2imap_ping() incorrect parameter count
3--CREDITS--
4Paul Sohier
5#phptestfest utrecht
6--SKIPIF--
7<?php
8require_once(__DIR__.'/skipif.inc');
9?>
10--FILE--
11<?php
12echo "Checking with no parameters\n";
13imap_ping();
14
15echo  "Checking with incorrect parameter type\n";
16imap_ping('');
17imap_ping(false);
18?>
19--EXPECTF--
20Checking with no parameters
21
22Warning: imap_ping() expects exactly 1 parameter, 0 given in %s on line %d
23Checking with incorrect parameter type
24
25Warning: imap_ping() expects parameter 1 to be resource, string given in %s on line %d
26
27Warning: imap_ping() expects parameter 1 to be resource, bool given in %s on line %d
28