source: josm/trunk/test/unit/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandlerTest.java@ 17360

Last change on this file since 17360 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: 1.2 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools.bugreport;
3
4import java.util.concurrent.CountDownLatch;
5
6import org.junit.jupiter.api.extension.RegisterExtension;
7import org.junit.jupiter.api.Test;
8import org.openstreetmap.josm.testutils.JOSMTestRules;
9
10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12/**
13 * Unit tests of {@link BugReportExceptionHandler} class.
14 */
15class BugReportExceptionHandlerTest {
16 /**
17 * No dependencies
18 */
19 @RegisterExtension
20 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
21 public JOSMTestRules test = new JOSMTestRules();
22
23 /**
24 * Unit test for {@link BugReportExceptionHandler#handleException} method.
25 * @throws InterruptedException if the current thread is interrupted while waiting
26 */
27 @Test
28 void testHandleException() throws InterruptedException {
29 CountDownLatch latch = new CountDownLatch(1);
30 BugReportQueue.getInstance().addBugReportHandler(e -> {
31 latch.countDown(); return false;
32 });
33 BugReportExceptionHandler.handleException(new Exception("testHandleException"));
34 latch.await();
35 }
36}
Note: See TracBrowser for help on using the repository browser.