source: josm/trunk/test/unit/org/openstreetmap/josm/plugins/PluginExceptionTest.java@ 14138

Last change on this file since 14138 was 12754, checked in by Don-vip, 7 years ago

see #15229 - see #15182 - see #13036 - update unit tests

  • 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.plugins;
3
4import static org.junit.Assert.assertEquals;
5
6import org.junit.Rule;
7import org.junit.Test;
8import org.openstreetmap.josm.testutils.JOSMTestRules;
9
10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12/**
13 * Unit tests of {@link PluginException} class.
14 */
15public class PluginExceptionTest {
16
17 /**
18 * Setup test.
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules();
23
24 /**
25 * Unit test of {@link PluginException#PluginException}.
26 */
27 @Test
28 public void testPluginDownloadException() {
29 PluginException ex = new PluginException("foo");
30 assertEquals("foo", ex.getMessage());
31 NullPointerException npe = new NullPointerException();
32 ex = new PluginException("bar", npe);
33 assertEquals("An error occurred in plugin bar", ex.getMessage());
34 assertEquals(npe, ex.getCause());
35 ex = new PluginException(null, "foobar", npe);
36 assertEquals("An error occurred in plugin foobar", ex.getMessage());
37 assertEquals(npe, ex.getCause());
38 }
39}
Note: See TracBrowser for help on using the repository browser.