source: josm/trunk/test/unit/org/openstreetmap/josm/gui/oauth/AuthorizationProcedureComboBoxTest.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.gui.oauth;
3
4import static org.junit.jupiter.api.Assertions.assertEquals;
5
6import javax.swing.ListCellRenderer;
7
8import org.junit.jupiter.api.extension.RegisterExtension;
9import org.junit.jupiter.api.Test;
10import org.openstreetmap.josm.testutils.JOSMTestRules;
11
12import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
13
14/**
15 * Unit tests of {@link AuthorizationProcedureComboBox} class.
16 */
17class AuthorizationProcedureComboBoxTest {
18
19 /**
20 * Setup tests
21 */
22 @RegisterExtension
23 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
24 public JOSMTestRules test = new JOSMTestRules();
25
26 /**
27 * Unit test of {@link AuthorizationProcedureComboBox}.
28 */
29 @Test
30 void testAuthorizationProcedureComboBox() {
31 ListCellRenderer<? super AuthorizationProcedure> r = new AuthorizationProcedureComboBox().getRenderer();
32 for (AuthorizationProcedure procedure : AuthorizationProcedure.values()) {
33 assertEquals(r, r.getListCellRendererComponent(null, procedure, 0, true, false));
34 assertEquals(r, r.getListCellRendererComponent(null, procedure, 0, false, false));
35 }
36 }
37}
Note: See TracBrowser for help on using the repository browser.