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

File:
1 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();
Note: See TracChangeset for help on using the changeset viewer.