source: josm/trunk/test/unit/org/openstreetmap/josm/gui/oauth/AuthorizationProcedureComboBoxTest.java@ 10989

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

add new unit test for AuthorizationProcedureComboBox

  • 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.oauth;
3
4import static org.junit.Assert.assertEquals;
5
6import javax.swing.ListCellRenderer;
7
8import org.junit.Rule;
9import org.junit.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 */
17public class AuthorizationProcedureComboBoxTest {
18
19 /**
20 * Setup tests
21 */
22 @Rule
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 public 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.