Changeset 7025 in josm for trunk/test/functional
- Timestamp:
- 2014-04-29T03:24:57+02:00 (11 years ago)
- Location:
- trunk/test/functional/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/functional/org/openstreetmap/josm/gui/history/HistoryBrowserTest.java
r6643 r7025 6 6 import java.awt.BorderLayout; 7 7 import java.io.File; 8 import java.io.IOException; 8 9 import java.io.InputStream; 9 10 import java.text.MessageFormat; … … 44 45 is.close(); 45 46 } 46 } catch(Exception e){ 47 } catch(IOException e){ 47 48 logger.log(Level.SEVERE, MessageFormat.format("failed to load property file ''{0}''", "test-functional-env.properties")); 48 49 fail(MessageFormat.format("failed to load property file ''{0}''", "test-functional-env.properties")); -
trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java
r7005 r7025 111 111 } 112 112 113 static public DataSet testDataSet;114 static public Properties testProperties;113 private static DataSet testDataSet; 114 private static Properties testProperties; 115 115 116 116 /** … … 120 120 * @throws OsmTransferException 121 121 */ 122 static public void createDataSetOnServer(DataSet ds) throws OsmTransferException {122 public static void createDataSetOnServer(DataSet ds) throws OsmTransferException { 123 123 logger.info("creating data set on the server ..."); 124 124 ArrayList<OsmPrimitive> primitives = new ArrayList<>(); … … 147 147 is.close(); 148 148 } 149 } catch(Exception e){ 149 } catch(IOException e){ 150 150 logger.log(Level.SEVERE, MessageFormat.format("failed to load property file ''{0}''", "test-functional-env.properties")); 151 151 fail(MessageFormat.format("failed to load property file ''{0}''", "test-functional-env.properties")); -
trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java
r7005 r7025 154 154 is.close(); 155 155 } 156 } catch(Exception e){ 156 } catch(IOException e){ 157 157 logger.log(Level.SEVERE, MessageFormat.format("failed to load property file ''{0}''", "test-functional-env.properties")); 158 158 fail(MessageFormat.format("failed to load property file ''{0}''", "test-functional-env.properties"));
Note:
See TracChangeset
for help on using the changeset viewer.