source: josm/trunk/test/unit/org/openstreetmap/josm/gui/help/HelpContentReaderTest.java@ 13188

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

fix Checkstyle/PMD issues, increase some test timeouts, update to Groovy 2.4.13

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.help;
3
4import static org.junit.Assert.assertFalse;
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 HelpContentReader} class.
14 */
15public class HelpContentReaderTest {
16
17 /**
18 * Setup tests
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().timeout(20000);
23
24 /**
25 * Unit test of {@link HelpContentReader#fetchHelpTopicContent} - null case.
26 * @throws HelpContentReaderException always
27 */
28 @Test(expected = HelpContentReaderException.class)
29 public void testFetchHelpTopicContentNull() throws HelpContentReaderException {
30 new HelpContentReader(null).fetchHelpTopicContent(null, false);
31 }
32
33 /**
34 * Unit test of {@link HelpContentReader#fetchHelpTopicContent} - nominal case.
35 * @throws HelpContentReaderException never
36 */
37 @Test
38 public void testFetchHelpTopicContentNominal() throws HelpContentReaderException {
39 String res = new HelpContentReader(HelpUtil.getWikiBaseUrl()).fetchHelpTopicContent(HelpBrowserTest.URL_1, false);
40 assertFalse(res.trim().isEmpty());
41 }
42}
Note: See TracBrowser for help on using the repository browser.