Provide more output on test that failed for me locally

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1568558 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2014-02-15 00:21:19 +00:00
parent 8bc8ac9bef
commit b51a52cf20
1 changed files with 4 additions and 1 deletions

View File

@ -107,6 +107,9 @@ public class TestFontRendering {
BufferedImage imgExpected = ImageIO.read(slTests.getFile("bug55902-mixedChars.png"));
DataBufferByte expectedDB = (DataBufferByte)imgExpected.getRaster().getDataBuffer();
DataBufferByte actualDB = (DataBufferByte)imgActual.getRaster().getDataBuffer();
assertTrue(Arrays.equals(expectedDB.getData(0), actualDB.getData(0)));
byte[] expectedData = expectedDB.getData(0);
byte[] actualData = actualDB.getData(0);
assertTrue("Expected to have matching raster-arrays, but found differences, size " + expectedData.length + " and " + actualData.length,
Arrays.equals(expectedData, actualData));
}
}