Changeset 9546 in josm for trunk/test/functional/org/openstreetmap/josm/gui/dialogs
- Timestamp:
- 2016-01-20T01:10:10+01:00 (9 years ago)
- Location:
- trunk/test/functional/org/openstreetmap/josm/gui/dialogs
- Files:
-
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/functional/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialogTestFT.java
r9543 r9546 4 4 import javax.swing.JFrame; 5 5 6 import org.junit.Ignore;7 6 import org.openstreetmap.josm.data.conflict.Conflict; 8 7 import org.openstreetmap.josm.data.osm.Node; … … 10 9 import org.openstreetmap.josm.data.osm.Way; 11 10 12 @Ignore 13 public class ConflictResolutionDialogTest extends JFrame { 11 public class ConflictResolutionDialogTestFT extends JFrame { 14 12 15 13 private ConflictResolutionDialog dialog; … … 40 38 * Constructs a new {@code ConflictResolutionDialogTest}. 41 39 */ 42 public ConflictResolutionDialogTest() { 40 public ConflictResolutionDialogTestFT() { 43 41 build(); 44 42 } 45 43 46 44 public static void main(String[] args) { 47 ConflictResolutionDialogTest test = new ConflictResolutionDialogTest(); 45 ConflictResolutionDialogTestFT test = new ConflictResolutionDialogTestFT(); 48 46 test.setVisible(true); 49 47 test.populate(); -
trunk/test/functional/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerTestFT.java
r9543 r9546 4 4 import javax.swing.JFrame; 5 5 6 import org.junit.Ignore; 7 8 @Ignore 9 public class ChangesetCacheManagerTest extends JFrame { 6 public class ChangesetCacheManagerTestFT extends JFrame { 10 7 11 8 private ChangesetCacheManager manager; … … 17 14 18 15 public static void main(String[] args) { 19 new ChangesetCacheManagerTest().start(); 16 new ChangesetCacheManagerTestFT().start(); 20 17 } 21 18 } -
trunk/test/functional/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryDialogTestFT.java
r9543 r9546 4 4 import javax.swing.JFrame; 5 5 6 import org.junit.Ignore; 7 8 @Ignore 9 public class ChangesetQueryDialogTest extends JFrame { 6 public class ChangesetQueryDialogTestFT extends JFrame { 10 7 11 8 private ChangesetQueryDialog dialog; … … 18 15 19 16 public static void main(String[] args) { 20 new ChangesetQueryDialogTest().start(); 17 new ChangesetQueryDialogTestFT().start(); 21 18 } 22 19 }
Note:
See TracChangeset
for help on using the changeset viewer.