expand range of acceptable values in TestFonts
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1801416 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1137099aa3
commit
9ae9aa0210
@ -18,7 +18,6 @@
|
|||||||
package org.apache.poi.sl;
|
package org.apache.poi.sl;
|
||||||
|
|
||||||
import static org.apache.poi.sl.SLCommonUtils.xslfOnly;
|
import static org.apache.poi.sl.SLCommonUtils.xslfOnly;
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
import static org.junit.Assume.assumeFalse;
|
import static org.junit.Assume.assumeFalse;
|
||||||
|
|
||||||
@ -74,7 +73,7 @@ public class TestFonts {
|
|||||||
private static final String INIT_FONTS[] = { "mona.ttf" };
|
private static final String INIT_FONTS[] = { "mona.ttf" };
|
||||||
|
|
||||||
// currently linux and mac return quite different values
|
// currently linux and mac return quite different values
|
||||||
private static final int[] expected_sizes = { 311, 312, 313, 399 };
|
private static final int[] expected_sizes = { 311, 312, 313, 398, 399 };
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void initGE() throws FontFormatException, IOException {
|
public static void initGE() throws FontFormatException, IOException {
|
||||||
@ -108,7 +107,7 @@ public class TestFonts {
|
|||||||
Rectangle2D anc = tb.getAnchor();
|
Rectangle2D anc = tb.getAnchor();
|
||||||
// ignore font metrics differences on windows / linux (... hopefully ...)
|
// ignore font metrics differences on windows / linux (... hopefully ...)
|
||||||
boolean found = Arrays.binarySearch(expected_sizes, (int)anc.getHeight()) > -1;
|
boolean found = Arrays.binarySearch(expected_sizes, (int)anc.getHeight()) > -1;
|
||||||
assertTrue(found);
|
assertTrue((int)anc.getHeight() + " not found in list of exepcted values", found);
|
||||||
// setFont(tb, "Mona");
|
// setFont(tb, "Mona");
|
||||||
// FileOutputStream fos = new FileOutputStream("bla-xslf.ppt");
|
// FileOutputStream fos = new FileOutputStream("bla-xslf.ppt");
|
||||||
// ppt.write(fos);
|
// ppt.write(fos);
|
||||||
|
Loading…
Reference in New Issue
Block a user