Ignore:
Timestamp:
2016-01-20T01:10:10+01:00 (8 years ago)
Author:
Don-vip
Message:

add more unit tests, fix packages, rename manual functional unit tests (with a main() method) to *TestFT.java

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  
    44import javax.swing.JFrame;
    55
    6 import org.junit.Ignore;
    76import org.openstreetmap.josm.data.conflict.Conflict;
    87import org.openstreetmap.josm.data.osm.Node;
     
    109import org.openstreetmap.josm.data.osm.Way;
    1110
    12 @Ignore
    13 public class ConflictResolutionDialogTest extends JFrame {
     11public class ConflictResolutionDialogTestFT extends JFrame {
    1412
    1513    private ConflictResolutionDialog dialog;
     
    4038     * Constructs a new {@code ConflictResolutionDialogTest}.
    4139     */
    42     public ConflictResolutionDialogTest() {
     40    public ConflictResolutionDialogTestFT() {
    4341        build();
    4442    }
    4543
    4644    public static void main(String[] args) {
    47         ConflictResolutionDialogTest test = new ConflictResolutionDialogTest();
     45        ConflictResolutionDialogTestFT test = new ConflictResolutionDialogTestFT();
    4846        test.setVisible(true);
    4947        test.populate();
  • trunk/test/functional/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerTestFT.java

    r9543 r9546  
    44import javax.swing.JFrame;
    55
    6 import org.junit.Ignore;
    7 
    8 @Ignore
    9 public class ChangesetCacheManagerTest extends JFrame {
     6public class ChangesetCacheManagerTestFT extends JFrame {
    107
    118    private ChangesetCacheManager manager;
     
    1714
    1815    public static void main(String[] args) {
    19         new ChangesetCacheManagerTest().start();
     16        new ChangesetCacheManagerTestFT().start();
    2017    }
    2118}
  • trunk/test/functional/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryDialogTestFT.java

    r9543 r9546  
    44import javax.swing.JFrame;
    55
    6 import org.junit.Ignore;
    7 
    8 @Ignore
    9 public class ChangesetQueryDialogTest extends JFrame {
     6public class ChangesetQueryDialogTestFT extends JFrame {
    107
    118    private ChangesetQueryDialog dialog;
     
    1815
    1916    public static void main(String[] args) {
    20         new ChangesetQueryDialogTest().start();
     17        new ChangesetQueryDialogTestFT().start();
    2118    }
    2219}
Note: See TracChangeset for help on using the changeset viewer.