From: Nick Burch Date: Wed, 26 Jun 2013 20:40:26 +0000 (+0000) Subject: Add a test to show that bug #53150 has been fixed by the recent fraction work X-Git-Tag: REL_3_10_BETA2~52 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ea1bb016a944cd8d5673e73d36bd9dc7d097bbba;p=poi.git Add a test to show that bug #53150 has been fixed by the recent fraction work git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1497084 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java b/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java index 6dcd6ebeba..2816a488f4 100644 --- a/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java +++ b/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java @@ -248,6 +248,9 @@ public class TestDataFormatter extends TestCase { //Bug54868 patch has a hit on the first string before the ";" assertEquals("-123 1/3", dfUS.formatRawCellContents(-123.321, -1, "0 ?/?;0")); + //Bug53150 formatting a whole number with fractions should just give the number + assertEquals("1", dfUS.formatRawCellContents(1.0, -1, "# #/#")); + assertEquals("11", dfUS.formatRawCellContents(11.0, -1, "# #/#")); } /**