source: josm/trunk/test/unit/org/openstreetmap/josm/gui/bugreport/DebugTextDisplayTest.java@ 17536

Last change on this file since 17536 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.1 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.bugreport;
3
4import static org.junit.jupiter.api.Assertions.assertEquals;
5
6import org.junit.jupiter.api.extension.RegisterExtension;
7import org.junit.jupiter.api.Test;
8import org.openstreetmap.josm.gui.datatransfer.ClipboardUtils;
9import org.openstreetmap.josm.testutils.JOSMTestRules;
10
11import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
12
13/**
14 * Unit test of {@link DebugTextDisplay} class.
15 */
16class DebugTextDisplayTest {
17 /**
18 * Setup test
19 */
20 @RegisterExtension
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().preferences();
23
24 /**
25 * Test {@link DebugTextDisplay#getCodeText}
26 */
27 @Test
28 void testGetCodeText() {
29 assertEquals("test", new DebugTextDisplay("test").getCodeText());
30 }
31
32 /**
33 * Test {@link DebugTextDisplay#copyToClipboard}
34 */
35 @Test
36 void testCopyToClipboard() {
37 new DebugTextDisplay("copy").copyToClipboard();
38 assertEquals(String.format("{{{%ncopy%n}}}"), ClipboardUtils.getClipboardStringContent());
39 }
40}
Note: See TracBrowser for help on using the repository browser.