{
// Create child with non-zero minX and minY
WritableRaster rst2 = rst.createWritableChild(0, 0, 25, 25, 30, 30, null);
// Create child's child with minX and minY out of bounds
rst2.createChild(10, 20, 10, 10, 0, 0, null);
harness.check(false);
}
catch (RasterFormatException ex)
{
harness.check(true);