Skip to content

Commit

Permalink
Provide more output on test that failed for me locally
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1568558 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
centic9 committed Feb 15, 2014
1 parent 8bc8ac9 commit b51a52c
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -107,6 +107,9 @@ public void bug55902mixedFontWithChineseCharacters() throws Exception {
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));
}
}

0 comments on commit b51a52c

Please sign in to comment.