Class ImageWriterTestCase

Object
TestCase
ImageIOTestCase
ImageWriterTestCase
All Implemented Interfaces:
Closeable, AutoCloseable

public abstract class ImageWriterTestCase extends ImageIOTestCase implements Closeable
Base class for testing ImageWriter implementations. This test writes different regions and bands of an image at different sub-sampling levels, then read back the images and compare the sample values.

To use this test, subclasses need to set the writer field to a non-null value in the prepareImageWriter(boolean) method. Example:

public class MyImageWriterTest extends ImageWriterTestCase {
    @Override
    protected void prepareImageWriter(boolean optionallySetOutput) throws IOException {
        if (writer == null) {
            writer = new MyImageWriter();
        }
    }
}
The writer shall accept at least one of the following output types, in preference order:
  • ImageOutputStream - mandatory according Image I/O specification.
  • File - fallback if the writer doesn't support ImageOutputStream. This fallback exists because ImageOutputStream is hard to support when the writer is implemented by a native library.
Since:
3.1