Changeset 32308 in osm for applications
- Timestamp:
- 2016-06-18T13:49:13+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/photo_geotagging
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/photo_geotagging/.classpath
r31677 r32308 2 2 <classpath> 3 3 <classpathentry kind="src" path="src"/> 4 <classpathentry kind="src" path="test/unit"/> 4 5 <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"/> 5 7 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 8 <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 1 1 package org.openstreetmap.josm.plugins.photo_geotagging; 2 2 3 import static junit.framework.Assert.assertFalse;3 import static org.junit.Assert.assertFalse; 4 4 5 5 import java.io.ByteArrayOutputStream; … … 13 13 import org.apache.commons.imaging.formats.tiff.TiffImageMetadata; 14 14 import org.apache.commons.imaging.formats.tiff.write.TiffOutputSet; 15 import org.junit.Ignore; 15 16 import org.junit.Rule; 16 17 import org.junit.Test; … … 24 25 25 26 @Test 27 @Ignore("To enable after https://issues.apache.org/jira/browse/IMAGING-179 is fixed") 26 28 public void testTicket11757() throws Exception { 27 29 final File in = new File(TestUtils.getTestDataRoot(), "_DSC1234.jpg");
Note:
See TracChangeset
for help on using the changeset viewer.