Changeset 9909 in josm for trunk/test/unit/org


Ignore:
Timestamp:
2016-03-02T09:32:19+01:00 (8 years ago)
Author:
Don-vip
Message:

add more unit tests

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  
    1414import org.openstreetmap.josm.gui.layer.OsmDataLayer;
    1515
     16import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
     17
    1618/**
    1719 * Unit tests of {@link SaveLayerInfo} class.
     
    1921public class SaveLayerInfoTest {
    2022    /**
    21       * Setup test.
    22       */
     23     * Setup test.
     24     */
    2325    @BeforeClass
    2426    public static void setUpBeforeClass() {
     
    3032     */
    3133    @Test(expected = IllegalArgumentException.class)
     34    @SuppressFBWarnings(value = "NP_NULL_PARAM_DEREF_NONVIRTUAL")
    3235    public void testSaveLayerInfoNull() {
    3336        new SaveLayerInfo(null);
Note: See TracChangeset for help on using the changeset viewer.