source: josm/trunk/test/unit/org/openstreetmap/josm/gui/download/BookmarkSelectionTest.java@ 17275

Last change on this file since 17275 was 17275, checked in by Don-vip, 3 years ago

see #16567 - upgrade almost all tests to JUnit 5, except those depending on WiremockRule

See https://github.com/tomakehurst/wiremock/issues/684

  • Property svn:eol-style set to native
File size: 934 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.download;
3
4import org.junit.jupiter.api.extension.RegisterExtension;
5import org.junit.jupiter.api.Test;
6import org.openstreetmap.josm.data.Bounds;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10
11/**
12 * Unit tests of {@link BookmarkSelection} class.
13 */
14class BookmarkSelectionTest {
15
16 /**
17 * Setup tests
18 */
19 @RegisterExtension
20 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
21 public JOSMTestRules test = new JOSMTestRules().preferences();
22
23 /**
24 * Test for {@link BookmarkSelection#BookmarkSelection}.
25 */
26 @Test
27 void testBookmarkSelection() {
28 BookmarkSelection sel = new BookmarkSelection();
29 sel.addGui(null);
30 sel.setDownloadArea(null);
31 sel.setDownloadArea(new Bounds(0, 0, 1, 1));
32 }
33}
Note: See TracBrowser for help on using the repository browser.