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
This commit is contained in:
Nick Burch 2013-06-26 20:40:26 +00:00
parent dd1116a1e3
commit 3046f139c7
1 changed files with 3 additions and 0 deletions

View File

@ -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, "# #/#"));
}
/**