Minor code clean-up.

This commit is contained in:
Harald Kuhr 2014-09-26 16:41:49 +02:00
parent a67c0fb456
commit 7634ca1261

View File

@ -64,7 +64,7 @@ import static org.mockito.Mockito.*;
* @version $Id: ImageReaderAbstractTestCase.java,v 1.0 Apr 1, 2008 10:36:46 PM haraldk Exp$ * @version $Id: ImageReaderAbstractTestCase.java,v 1.0 Apr 1, 2008 10:36:46 PM haraldk Exp$
*/ */
public abstract class ImageReaderAbstractTestCase<T extends ImageReader> { public abstract class ImageReaderAbstractTestCase<T extends ImageReader> {
// TODO: Should we really test if he provider is installed? // TODO: Should we really test if the provider is installed?
// - Pro: Tests the META-INF/services config // - Pro: Tests the META-INF/services config
// - Con: Not all providers should be installed at runtime... // - Con: Not all providers should be installed at runtime...
@ -635,10 +635,8 @@ public abstract class ImageReaderAbstractTestCase<T extends ImageReader> {
failBecause("Image could not be read", e); failBecause("Image could not be read", e);
} }
assertNotNull("Image was null!", image); assertNotNull("Image was null!", image);
assertEquals("Read image has wrong width: " + image.getWidth(), assertEquals("Read image has wrong width: " + image.getWidth(), 5, image.getWidth());
5, image.getWidth()); assertEquals("Read image has wrong height: " + image.getHeight(), 5, image.getHeight());
assertEquals("Read image has wrong height: " + image.getHeight(),
5, image.getHeight());
} }