source: josm/trunk/test/unit/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorizationUITest.java@ 9675

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

add more unit tests

  • Property svn:eol-style set to native
File size: 792 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.oauth;
3
4import static org.junit.Assert.assertNotNull;
5
6import org.junit.BeforeClass;
7import org.junit.Test;
8import org.openstreetmap.josm.JOSMFixture;
9import org.openstreetmap.josm.Main;
10
11/**
12 * Unit tests of {@link SemiAutomaticAuthorizationUI} class.
13 */
14public class SemiAutomaticAuthorizationUITest {
15
16 /**
17 * Setup tests
18 */
19 @BeforeClass
20 public static void setUpBeforeClass() {
21 JOSMFixture.createUnitTestFixture().init();
22 }
23
24 /**
25 * Unit test of {@link SemiAutomaticAuthorizationUI#SemiAutomaticAuthorizationUI}.
26 */
27 @Test
28 public void testSemiAutomaticAuthorizationUI() {
29 assertNotNull(new SemiAutomaticAuthorizationUI("", Main.worker));
30 }
31}
Note: See TracBrowser for help on using the repository browser.