Ignore:
Timestamp:
2016-06-18T13:49:13+02:00 (8 years ago)
Author:
donvip
Message:

ignore unit test until https://issues.apache.org/jira/browse/IMAGING-179 is fixed

Location:
applications/editors/josm/plugins/photo_geotagging
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/photo_geotagging/.classpath

    r31677 r32308  
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
     4        <classpathentry kind="src" path="test/unit"/>
    45        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
     6        <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
    57        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    68        <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-commons"/>
  • applications/editors/josm/plugins/photo_geotagging/test/unit/org/openstreetmap/josm/plugins/photo_geotagging/ExifGPSTaggerTest.java

    r32037 r32308  
    11package org.openstreetmap.josm.plugins.photo_geotagging;
    22
    3 import static junit.framework.Assert.assertFalse;
     3import static org.junit.Assert.assertFalse;
    44
    55import java.io.ByteArrayOutputStream;
     
    1313import org.apache.commons.imaging.formats.tiff.TiffImageMetadata;
    1414import org.apache.commons.imaging.formats.tiff.write.TiffOutputSet;
     15import org.junit.Ignore;
    1516import org.junit.Rule;
    1617import org.junit.Test;
     
    2425
    2526    @Test
     27    @Ignore("To enable after https://issues.apache.org/jira/browse/IMAGING-179 is fixed")
    2628    public void testTicket11757() throws Exception {
    2729        final File in = new File(TestUtils.getTestDataRoot(), "_DSC1234.jpg");
Note: See TracChangeset for help on using the changeset viewer.