Changeset 10064 in josm for trunk/test
- Timestamp:
- 2016-03-28T02:57:02+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandlerTest.java
r10062 r10064 2 2 package org.openstreetmap.josm.tools.bugreport; 3 3 4 import static org.junit.Assert.assertNotNull; 5 4 6 import org.junit.Before; 7 import org.junit.Test; 5 8 import org.openstreetmap.josm.JOSMFixture; 6 9 7 10 /** 8 * Bug report unit tests.11 * Unit tests of {@link BugReportExceptionHandler} class. 9 12 */ 10 13 public class BugReportExceptionHandlerTest { … … 17 20 JOSMFixture.createUnitTestFixture().init(); 18 21 } 22 23 /** 24 * Unit test for {@link BugReportExceptionHandler#buildPanel} method. 25 */ 26 @Test 27 public void testBuildPanel() { 28 assertNotNull(BugReportExceptionHandler.buildPanel(new Exception())); 29 } 19 30 }
Note:
See TracChangeset
for help on using the changeset viewer.