felipe Mon Sep 1 23:41:35 2008 UTC
Added files:
/php-src/ext/fileinfo/tests mime_content_type_001.phpt
Log:
- New test
http://cvs.php.net/viewvc.cgi/php-src/ext/fileinfo/tests/mime_content_type_001.phpt?view=markup&rev=1.1
Index: php-src/ext/fileinfo/tests/mime_content_type_001.phpt
+++ php-src/ext/fileinfo/tests/mime_content_type_001.phpt
--TEST--
mime_content_type(): Testing wrong parameters
--FILE--
<?php
mime_content_type(1);
mime_content_type(NULL);
mime_content_type(new stdclass);
mime_content_type(array());
mime_content_type('foo/inexistent');
mime_content_type('');
mime_content_type("\0");
?>
--EXPECTF--
Warning: mime_content_type(): Can only process string or stream arguments in %s
on line %d
Warning: mime_content_type(): Can only process string or stream arguments in %s
on line %d
Warning: mime_content_type(): Can only process string or stream arguments in %s
on line %d
Warning: mime_content_type(): Can only process string or stream arguments in %s
on line %d
Warning: mime_content_type(foo/inexistent): failed to open stream: No such file
or directory in %s on line %d
Warning: mime_content_type(): Empty filename or path in %s on line %d
Warning: mime_content_type(): Empty filename or path in %s on line %d
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php