Changeset 9909 in josm for trunk/test
- Timestamp:
- 2016-03-02T09:32:19+01:00 (9 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/gui/io
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/io/SaveLayerInfoTest.java
r9763 r9909 14 14 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 15 15 16 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 17 16 18 /** 17 19 * Unit tests of {@link SaveLayerInfo} class. … … 19 21 public class SaveLayerInfoTest { 20 22 /** 21 22 23 * Setup test. 24 */ 23 25 @BeforeClass 24 26 public static void setUpBeforeClass() { … … 30 32 */ 31 33 @Test(expected = IllegalArgumentException.class) 34 @SuppressFBWarnings(value = "NP_NULL_PARAM_DEREF_NONVIRTUAL") 32 35 public void testSaveLayerInfoNull() { 33 36 new SaveLayerInfo(null);
Note:
See TracChangeset
for help on using the changeset viewer.