--TEST-- Filesystem and math functions - is_dir, is_file, round --FILE-- --EXPECT-- == is_dir() == bool(true) bool(false) bool(true) == is_file() == bool(false) bool(true) == round() == float(3) float(4) float(3.14) float(4) float(5) float(-2) float(1234.57) float(1200)