Changeset 32884 in osm for applications/editors/josm/plugins/wikipedia/test/unit/org
- Timestamp:
- 2016-08-27T13:00:05+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/wikipedia/test/unit/org/wikipedia
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wikipedia/test/unit/org/wikipedia/WikidataTagCellRendererTest.java
r32829 r32884 11 11 import javax.swing.JTable; 12 12 13 import org.junit. Before;13 import org.junit.Rule; 14 14 import org.junit.Test; 15 import org.openstreetmap.josm. Main;15 import org.openstreetmap.josm.testutils.JOSMTestRules; 16 16 17 17 public class WikidataTagCellRendererTest { 18 18 19 @Before 20 public void setUp() throws Exception { 21 Main.initApplicationPreferences(); 22 } 19 /** 20 * Setup test. 21 */ 22 @Rule 23 public JOSMTestRules rules = new JOSMTestRules().preferences(); 23 24 24 25 @Test … … 42 43 "<li>Q278250 <span color='gray'>Völs</span></li></ul>")); 43 44 } 44 45 45 } -
applications/editors/josm/plugins/wikipedia/test/unit/org/wikipedia/WikipediaAppTest.java
r32687 r32884 2 2 3 3 import org.junit.Before; 4 import org.junit.Rule; 4 5 import org.junit.Test; 5 6 import org.openstreetmap.josm.Main; 6 7 import org.openstreetmap.josm.data.coor.LatLon; 8 import org.openstreetmap.josm.testutils.JOSMTestRules; 7 9 import org.wikipedia.WikipediaApp.WikipediaEntry; 8 10 import org.wikipedia.WikipediaApp.WikipediaLangArticle; … … 22 24 23 25 public class WikipediaAppTest { 24 @Before 25 public void setUp() throws Exception { 26 Main.initApplicationPreferences(); 27 } 26 27 /** 28 * Setup test. 29 */ 30 @Rule 31 public JOSMTestRules rules = new JOSMTestRules().preferences(); 28 32 29 33 @Test
Note:
See TracChangeset
for help on using the changeset viewer.