Changeset 7134 in josm for trunk/test


Ignore:
Timestamp:
2014-05-15T20:03:47+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #10030 - wms support broken in r7132

Location:
trunk/test
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/tools/ImageProviderTest.java

    r7132 r7134  
    2929        assertThat(ImageProvider.read(file, true, false).getTransparency(), is(Transparency.OPAQUE));
    3030    }
     31
     32    /**
     33     * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/10030">#10030</a>
     34     * @throws IOException if an error occurs during reading
     35     */
     36    @Test
     37    public void testTicket10030() throws IOException {
     38        File file = new File(TestUtils.getTestDataRoot()+"regress/10030/tile.jpg");
     39        ImageProvider.read(file, true, true);
     40    }
    3141}
Note: See TracChangeset for help on using the changeset viewer.