Author: fanningpj
Date: Mon May 23 14:10:11 2022
New Revision: 1901175

URL: http://svn.apache.org/viewvc?rev=1901175&view=rev
Log:
partial implementation FLOOR.MATH function (needs more testing and bad param 
support)

Modified:
    
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFloorMath.java

Modified: 
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFloorMath.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFloorMath.java?rev=1901175&r1=1901174&r2=1901175&view=diff
==============================================================================
--- 
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFloorMath.java
 (original)
+++ 
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFloorMath.java
 Mon May 23 14:10:11 2022
@@ -51,6 +51,7 @@ final class TestFloorMath {
             assertDouble(fe, cell, "FLOOR.MATH(-2.5,-2)", -4.0, 
0.00000000000001);
             assertDouble(fe, cell, "FLOOR.MATH(-2.5,-2,-1)", -2.0, 
0.00000000000001);
             assertDouble(fe, cell, "FLOOR.MATH(2.5,-2)", 2.0, 
0.00000000000001);
+            assertDouble(fe, cell, "FLOOR.MATH(0.234,0.01)", 0.23, 
0.00000000000001);
         }
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to