Changeset 14030 in josm for trunk/test


Ignore:
Timestamp:
2018-07-15T12:39:47+02:00 (6 years ago)
Author:
michael2402
Message:

See #16388: Fix Checkstyle / Test issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/dialogs/relation/GenericRelationEditorTest.java

    r14028 r14030  
    44import static org.junit.Assert.assertNotNull;
    55import static org.junit.Assert.assertNull;
     6import static org.junit.Assert.assertSame;
    67
    78import java.util.Collections;
     
    9495    /**
    9596     * Unit test of {@code GenericRelationEditor#build*} methods.
     97     * <p>
     98     * This test only tests if they do not throw exceptions.
    9699     */
    97100    @Test
     
    111114        assertNotNull(top);
    112115        assertNotNull(tagEditorPanel.getModel());
     116        assertNotNull(tagModel);
     117        assertSame(memberTableModel, memberTable.getModel());
     118        assertSame(selectionTableModel, selectionTable.getModel());
    113119    }
    114120}
Note: See TracChangeset for help on using the changeset viewer.