Changeset 34428 in osm for applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org
- Timestamp:
- 2018-07-18T12:02:17+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/MicrosoftStreetside
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/MicrosoftStreetside
- Property svn:ignore
-
old new 8 8 .gitignore 9 9 .gradle 10 .settings 10 11 checkstyle-josm-MicrosoftStreetside.xml 11 12 spotbugs-josm-MicrosoftStreetside.xml
-
- Property svn:ignore
-
applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideAbstractImageTest.java
r34416 r34428 13 13 public class StreetsideAbstractImageTest { 14 14 15 @Rule 16 public JOSMTestRules rules = new StreetsideTestRules().platform(); 15 /*@Rule 16 public JOSMTestRules rules = new StreetsideTestRules().platform();*/ 17 17 18 18 @Test -
applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideDataTest.java
r34386 r34428 25 25 public class StreetsideDataTest { 26 26 27 @Rule 28 public JOSMTestRules rules = new StreetsideTestRules().platform(); 27 /*@Rule 28 public JOSMTestRules rules = new StreetsideTestRules().platform();*/ 29 29 30 30 private StreetsideData data; … … 96 96 * Tests the selection of images. 97 97 */ 98 @Ignore99 98 @Test 100 99 public void selectTest() { … … 113 112 * {@link StreetsideData#selectPrevious()} methods. 114 113 */ 115 @Ignore116 114 @Test 117 115 public void nextAndPreviousTest() { … … 128 126 } 129 127 130 @Ignore131 128 @Test(expected=IllegalStateException.class) 132 129 public void nextOfNullImgTest() { … … 135 132 } 136 133 137 @Ignore138 134 @Test(expected=IllegalStateException.class) 139 135 public void previousOfNullImgTest() { … … 146 142 * multiselected List should reset. 147 143 */ 148 @Ignore149 144 @Test 150 145 public void multiSelectTest() { -
applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideLayerTest.java
r34419 r34428 73 73 } 74 74 75 @Ignore76 75 @Test 77 76 public void testClearInstance() { -
applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/GraphicsUtilsTest.java
r34386 r34428 48 48 49 49 /** 50 * Test method for {@link org.openstreetmap.josm.plugins.streetside. cubemap.GraphicsUtils#convertBufferedImage2JavaFXImage(java.awt.image.BufferedImage)}.50 * Test method for {@link org.openstreetmap.josm.plugins.streetside.utils.GraphicsUtils#convertBufferedImage2JavaFXImage(java.awt.image.BufferedImage)}. 51 51 */ 52 52 @Ignore … … 57 57 58 58 /** 59 * Test method for {@link org.openstreetmap.josm.plugins.streetside. cubemap.GraphicsUtils#buildMultiTiledCubemapFaceImage(java.awt.image.BufferedImage[])}.59 * Test method for {@link org.openstreetmap.josm.plugins.streetside.utils.GraphicsUtils#buildMultiTiledCubemapFaceImage(java.awt.image.BufferedImage[])}. 60 60 */ 61 61 @Ignore … … 66 66 67 67 /** 68 * Test method for {@link org.openstreetmap.josm.plugins.streetside. cubemap.GraphicsUtils#rotateImage(java.awt.image.BufferedImage)}.68 * Test method for {@link org.openstreetmap.josm.plugins.streetside.utils.GraphicsUtils#rotateImage(java.awt.image.BufferedImage)}. 69 69 */ 70 70 @Ignore -
applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/cubemap/TileDownloadingTaskTest.java
r34419 r34428 21 21 public final void testCall() { 22 22 ExecutorService pool = Executors.newFixedThreadPool(1); 23 List<Callable< String>> tasks = new ArrayList<>(1);23 List<Callable<List<String>>> tasks = new ArrayList<>(1); 24 24 tasks.add(new TileDownloadingTask("2202112030033001233")); 25 25 try { 26 List<Future< String>> results = pool.invokeAll(tasks);26 List<Future<List<String>>> results = pool.invokeAll(tasks); 27 27 assertEquals(results.get(0),"2202112030033001233"); 28 28 } catch (InterruptedException e) {
Note:
See TracChangeset
for help on using the changeset viewer.