1--TEST--
2Test function posix_errno() by calling it with its expected arguments
3--CREDITS--
4Morten Amundsen mor10am@gmail.com
5Francesco Fullone ff@ideato.it
6#PHPTestFest Cesena Italia on 2009-06-20
7--EXTENSIONS--
8posix
9--FILE--
10<?php
11
12echo "*** Test by calling method or function with its expected arguments ***\n";
13
14// test without any error
15var_dump(posix_errno());
16
17?>
18--EXPECT--
19*** Test by calling method or function with its expected arguments ***
20int(0)
21