Index: trunk/test/unit/org/openstreetmap/josm/gui/download/BookmarkSelectionTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/gui/download/BookmarkSelectionTest.java	(revision 9606)
+++ trunk/test/unit/org/openstreetmap/josm/gui/download/BookmarkSelectionTest.java	(revision 9606)
@@ -0,0 +1,32 @@
+// License: GPL. For details, see LICENSE file.
+package org.openstreetmap.josm.gui.download;
+
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.openstreetmap.josm.JOSMFixture;
+import org.openstreetmap.josm.data.Bounds;
+
+/**
+ * Unit tests of {@link BookmarkSelection} class.
+ */
+public class BookmarkSelectionTest {
+
+    /**
+     * Setup tests
+     */
+    @BeforeClass
+    public static void setUpBeforeClass() {
+        JOSMFixture.createUnitTestFixture().init();
+    }
+
+    /**
+     * Test for {@link BookmarkSelection#BookmarkSelection}.
+     */
+    @Test
+    public void testBookmarkSelection() {
+        BookmarkSelection sel = new BookmarkSelection();
+        sel.addGui(null);
+        sel.setDownloadArea(null);
+        sel.setDownloadArea(new Bounds(0, 0, 1, 1));
+    }
+}
Index: trunk/test/unit/org/openstreetmap/josm/gui/download/BoundingBoxSelectionTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/gui/download/BoundingBoxSelectionTest.java	(revision 9606)
+++ trunk/test/unit/org/openstreetmap/josm/gui/download/BoundingBoxSelectionTest.java	(revision 9606)
@@ -0,0 +1,32 @@
+// License: GPL. For details, see LICENSE file.
+package org.openstreetmap.josm.gui.download;
+
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.openstreetmap.josm.JOSMFixture;
+import org.openstreetmap.josm.data.Bounds;
+
+/**
+ * Unit tests of {@link BoundingBoxSelection} class.
+ */
+public class BoundingBoxSelectionTest {
+
+    /**
+     * Setup tests
+     */
+    @BeforeClass
+    public static void setUpBeforeClass() {
+        JOSMFixture.createUnitTestFixture().init();
+    }
+
+    /**
+     * Test for {@link BoundingBoxSelection#BoundingBoxSelection}.
+     */
+    @Test
+    public void testBoundingBoxSelection() {
+        BoundingBoxSelection sel = new BoundingBoxSelection();
+        sel.addGui(null);
+        sel.setDownloadArea(null);
+        sel.setDownloadArea(new Bounds(0, 0, 1, 1));
+    }
+}
Index: trunk/test/unit/org/openstreetmap/josm/gui/download/PlaceSelectionTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/gui/download/PlaceSelectionTest.java	(revision 9606)
+++ trunk/test/unit/org/openstreetmap/josm/gui/download/PlaceSelectionTest.java	(revision 9606)
@@ -0,0 +1,32 @@
+// License: GPL. For details, see LICENSE file.
+package org.openstreetmap.josm.gui.download;
+
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.openstreetmap.josm.JOSMFixture;
+import org.openstreetmap.josm.data.Bounds;
+
+/**
+ * Unit tests of {@link PlaceSelection} class.
+ */
+public class PlaceSelectionTest {
+
+    /**
+     * Setup tests
+     */
+    @BeforeClass
+    public static void setUpBeforeClass() {
+        JOSMFixture.createUnitTestFixture().init();
+    }
+
+    /**
+     * Test for {@link PlaceSelection#PlaceSelection}.
+     */
+    @Test
+    public void testBookmarkSelection() {
+        PlaceSelection sel = new PlaceSelection();
+        sel.addGui(null);
+        sel.setDownloadArea(null);
+        sel.setDownloadArea(new Bounds(0, 0, 1, 1));
+    }
+}
Index: trunk/test/unit/org/openstreetmap/josm/gui/download/TileSelectionTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/gui/download/TileSelectionTest.java	(revision 9606)
+++ trunk/test/unit/org/openstreetmap/josm/gui/download/TileSelectionTest.java	(revision 9606)
@@ -0,0 +1,32 @@
+// License: GPL. For details, see LICENSE file.
+package org.openstreetmap.josm.gui.download;
+
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.openstreetmap.josm.JOSMFixture;
+import org.openstreetmap.josm.data.Bounds;
+
+/**
+ * Unit tests of {@link TileSelection} class.
+ */
+public class TileSelectionTest {
+
+    /**
+     * Setup tests
+     */
+    @BeforeClass
+    public static void setUpBeforeClass() {
+        JOSMFixture.createUnitTestFixture().init();
+    }
+
+    /**
+     * Test for {@link TileSelection#TileSelection}.
+     */
+    @Test
+    public void testTileSelection() {
+        TileSelection sel = new TileSelection();
+        sel.addGui(null);
+        sel.setDownloadArea(null);
+        sel.setDownloadArea(new Bounds(0, 0, 1, 1));
+    }
+}
