Files
php-memcached/tests/getmulti_empty.phpt
Pavel Djundik 7348cc11f7 Move working tests up a folder (#503)
Tests in the experimental/ folder were not executed on CI. The ones that work move up, the few
that remain in experimental/ need further investigation to get working or remove.
2023-04-27 08:35:07 -07:00

16 lines
242 B
PHP

--TEST--
Memcached::getMulti() with empty array
--SKIPIF--
<?php include "skipif.inc";?>
--FILE--
<?php
include dirname(__FILE__) . '/config.inc';
$m = memc_get_instance ();
$v = $m->getMulti(array());
var_dump($v);
--EXPECT--
array(0) {
}