Adjust test that is failing on freebsd some more
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1692904 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
23366918cd
commit
d3efdf4dc4
@ -18,11 +18,12 @@
|
|||||||
*/
|
*/
|
||||||
package org.apache.poi.sl.draw.geom;
|
package org.apache.poi.sl.draw.geom;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
import java.awt.geom.GeneralPath;
|
import java.awt.geom.GeneralPath;
|
||||||
import java.awt.geom.Rectangle2D;
|
import java.awt.geom.Rectangle2D;
|
||||||
import java.io.IOException;
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
@ -370,24 +370,21 @@ public abstract class BaseTestBugzillaIssues {
|
|||||||
0, cell0.getCellStyle().getRotation());
|
0, cell0.getCellStyle().getRotation());
|
||||||
|
|
||||||
// check computing size up to a large size
|
// check computing size up to a large size
|
||||||
StringBuilder b = new StringBuilder();
|
// StringBuilder b = new StringBuilder();
|
||||||
for(int i = 0;i < longValue.length()*5;i++) {
|
// for(int i = 0;i < longValue.length()*5;i++) {
|
||||||
b.append("w");
|
// b.append("w");
|
||||||
assertTrue("Had zero length starting at length " + i, computeCellWidthFixed(font, b.toString()) > 0);
|
// assertTrue("Had zero length starting at length " + i, computeCellWidthFixed(font, b.toString()) > 0);
|
||||||
}
|
// }
|
||||||
double widthManual = computeCellWidthManually(cell0, font);
|
double widthManual = computeCellWidthManually(cell0, font);
|
||||||
double widthBeforeCell = SheetUtil.getCellWidth(cell0, 8, null, false);
|
double widthBeforeCell = SheetUtil.getCellWidth(cell0, 8, null, false);
|
||||||
double widthBeforeCol = SheetUtil.getColumnWidth(sheet, 0, false);
|
double widthBeforeCol = SheetUtil.getColumnWidth(sheet, 0, false);
|
||||||
|
|
||||||
assertTrue("Expected to have cell width > 0 when computing manually, but had " + widthManual + "/" + widthBeforeCell + "/" + widthBeforeCol + "/" +
|
String info = widthManual + "/" + widthBeforeCell + "/" + widthBeforeCol + "/" +
|
||||||
SheetUtil.canComputeColumnWidht(font) + "/" + computeCellWidthFixed(font, "1") + "/" + computeCellWidthFixed(font, "0000") + "/" + computeCellWidthFixed(font, longValue),
|
SheetUtil.canComputeColumnWidht(font) + "/" + computeCellWidthFixed(font, "1") + "/" + computeCellWidthFixed(font, "w") + "/" +
|
||||||
widthManual > 0);
|
computeCellWidthFixed(font, "1w") + "/" + computeCellWidthFixed(font, "0000") + "/" + computeCellWidthFixed(font, longValue);
|
||||||
assertTrue("Expected to have cell width > 0 BEFORE auto-size, but had " + widthManual + "/" + widthBeforeCell + "/" + widthBeforeCol + "/" +
|
assertTrue("Expected to have cell width > 0 when computing manually, but had " + info, widthManual > 0);
|
||||||
SheetUtil.canComputeColumnWidht(font) + "/" + computeCellWidthFixed(font, "1") + "/" + computeCellWidthFixed(font, "0000") + "/" + computeCellWidthFixed(font, longValue),
|
assertTrue("Expected to have cell width > 0 BEFORE auto-size, but had " + info, widthBeforeCell > 0);
|
||||||
widthBeforeCell > 0);
|
assertTrue("Expected to have column width > 0 BEFORE auto-size, but had " + info, widthBeforeCol > 0);
|
||||||
assertTrue("Expected to have column width > 0 BEFORE auto-size, but had " + widthManual + "/" + widthBeforeCell + "/" + widthBeforeCol + "/" +
|
|
||||||
SheetUtil.canComputeColumnWidht(font) + "/" + computeCellWidthFixed(font, "1") + "/" + computeCellWidthFixed(font, "0000") + "/" + computeCellWidthFixed(font, longValue),
|
|
||||||
widthBeforeCol > 0);
|
|
||||||
|
|
||||||
sheet.autoSizeColumn(0);
|
sheet.autoSizeColumn(0);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user