]> granicus.if.org Git - php/commitdiff
- Add test for floor and ceil
authorDerick Rethans <derick@php.net>
Sat, 22 Dec 2001 11:52:56 +0000 (11:52 +0000)
committerDerick Rethans <derick@php.net>
Sat, 22 Dec 2001 11:52:56 +0000 (11:52 +0000)
ext/standard/tests/math/floorceil.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/math/floorceil.phpt b/ext/standard/tests/math/floorceil.phpt
new file mode 100644 (file)
index 0000000..2098e0a
--- /dev/null
@@ -0,0 +1,47 @@
+--TEST--
+Tests for floor en ceil
+--POST--
+--GET--
+--FILE--
+<?php
+    $a = ceil (-0);   $b = ceil (-0.5); $c = ceil (-1);
+    $d = ceil (-1.5); $e = ceil (-1.8); $f = ceil (-2.7);
+    var_dump ($a, $b, $c, $d, $e, $f);
+    
+    $a = ceil (0);   $b = ceil (0.5); $c = ceil (1);
+    $d = ceil (1.5); $e = ceil (1.8); $f = ceil (2.7);
+    var_dump ($a, $b, $c, $d, $e, $f);
+    
+    $a = floor (-0);   $b = floor (-0.5); $c = floor (-1);
+    $d = floor (-1.5); $e = floor (-1.8); $f = floor (-2.7);
+    var_dump ($a, $b, $c, $d, $e, $f);
+    
+    $a = floor (0);   $b = floor (0.5); $c = floor (1);
+    $d = floor (1.5); $e = floor (1.8); $f = floor (2.7);
+    var_dump ($a, $b, $c, $d, $e, $f);
+?>  
+--EXPECT--
+float(0)
+float(-0)
+float(-1)
+float(-1)
+float(-1)
+float(-2)
+float(0)
+float(1)
+float(1)
+float(2)
+float(2)
+float(3)
+float(0)
+float(-1)
+float(-1)
+float(-2)
+float(-2)
+float(-3)
+float(0)
+float(0)
+float(1)
+float(1)
+float(1)
+float(2)