Changeset 19223 in josm for trunk/test/unit
- Timestamp:
- 2024-09-17T17:42:35+02:00 (3 months ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 3 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/validation/routines/DomainValidatorTestIT.java
r18893 r19223 48 48 import org.junit.jupiter.api.Test; 49 49 import org.openstreetmap.josm.testutils.annotations.HTTPS; 50 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 50 51 import org.openstreetmap.josm.tools.Logging; 51 52 … … 58 59 */ 59 60 @HTTPS 61 @IntegrationTest 60 62 class DomainValidatorTestIT { 61 63 /** -
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParserTestIT.java
r18893 r19223 6 6 import org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.MapCSSParser; 7 7 import org.openstreetmap.josm.testutils.annotations.HTTPS; 8 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 8 9 import org.openstreetmap.josm.testutils.annotations.Projection; 9 10 … … 13 14 @HTTPS 14 15 @Projection 16 @IntegrationTest 15 17 class MapCSSParserTestIT { 16 18 /** -
trunk/test/unit/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreferenceTestIT.java
r19056 r19223 68 68 import org.openstreetmap.josm.testutils.annotations.HTTPS; 69 69 import org.openstreetmap.josm.testutils.annotations.I18n; 70 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 70 71 import org.openstreetmap.josm.testutils.annotations.ProjectionNadGrids; 71 72 import org.openstreetmap.josm.tools.HttpClient; … … 79 80 @HTTPS 80 81 @I18n 82 @IntegrationTest 81 83 @org.openstreetmap.josm.testutils.annotations.Projection 82 84 @ProjectionNadGrids -
trunk/test/unit/org/openstreetmap/josm/gui/preferences/map/MapPaintPreferenceTestIT.java
r18893 r19223 27 27 import org.openstreetmap.josm.gui.preferences.AbstractExtendedSourceEntryTestCase; 28 28 import org.openstreetmap.josm.testutils.annotations.HTTPS; 29 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 29 30 import org.openstreetmap.josm.tools.ImageProvider; 30 31 … … 33 34 */ 34 35 @HTTPS 36 @IntegrationTest 35 37 @Timeout(value = 15, unit = TimeUnit.MINUTES) 36 38 class MapPaintPreferenceTestIT extends AbstractExtendedSourceEntryTestCase { -
trunk/test/unit/org/openstreetmap/josm/gui/preferences/map/TaggingPresetPreferenceTestIT.java
r19195 r19223 39 39 import org.openstreetmap.josm.spi.preferences.Config; 40 40 import org.openstreetmap.josm.testutils.annotations.HTTPS; 41 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 41 42 import org.openstreetmap.josm.testutils.annotations.Territories; 42 43 import org.openstreetmap.josm.tools.HttpClient; … … 51 52 */ 52 53 @HTTPS 54 @IntegrationTest 53 55 @Territories 54 56 @Timeout(value = 20, unit = TimeUnit.MINUTES) -
trunk/test/unit/org/openstreetmap/josm/gui/preferences/validator/ValidatorTagCheckerRulesPreferenceTestIT.java
r18893 r19223 25 25 import org.openstreetmap.josm.gui.preferences.AbstractExtendedSourceEntryTestCase; 26 26 import org.openstreetmap.josm.testutils.annotations.HTTPS; 27 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 27 28 28 29 /** … … 30 31 */ 31 32 @HTTPS 33 @IntegrationTest 32 34 @Timeout(20) 33 35 class ValidatorTagCheckerRulesPreferenceTestIT extends AbstractExtendedSourceEntryTestCase { -
trunk/test/unit/org/openstreetmap/josm/io/CertificateAmendmentTestIT.java
r19158 r19223 18 18 import org.openstreetmap.josm.TestUtils; 19 19 import org.openstreetmap.josm.testutils.annotations.HTTPS; 20 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 20 21 21 22 /** … … 23 24 */ 24 25 @HTTPS 26 @IntegrationTest 25 27 @Timeout(20) 26 28 class CertificateAmendmentTestIT { -
trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerTestIT.java
r19209 r19223 42 42 import org.openstreetmap.josm.testutils.annotations.BasicPreferences; 43 43 import org.openstreetmap.josm.testutils.annotations.HTTPS; 44 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 44 45 import org.openstreetmap.josm.testutils.annotations.Main; 45 46 import org.openstreetmap.josm.testutils.annotations.Plugins; … … 56 57 @BasicPreferences 57 58 @HTTPS 59 @IntegrationTest 58 60 @Main 59 61 @Projection -
trunk/test/unit/org/openstreetmap/josm/testutils/ImageTestUtils.java
r19221 r19223 148 148 public static void writeDebugImages(@Nonnull Path directory, @Nonnull String filePrefix, @Nonnull BufferedImage diff, 149 149 @Nullable BufferedImage oldImage, @Nullable BufferedImage newImage) { 150 if (!UPDATE_ALL ) {150 if (!UPDATE_ALL && false) { 151 151 return; 152 152 } -
trunk/test/unit/org/openstreetmap/josm/tools/PlatformHookTestIT.java
r18853 r19223 11 11 12 12 import jakarta.json.Json; 13 import org.openstreetmap.josm.testutils.annotations.IntegrationTest; 13 14 14 15 /** 15 16 * Integration tests of {@link PlatformHook} class. 16 17 */ 18 @IntegrationTest 17 19 class PlatformHookTestIT { 18 20 /** -
trunk/test/unit/org/openstreetmap/josm/tools/TerritoriesTestIT.java
r18870 r19223 14 14 */ 15 15 @Projection 16 @org.openstreetmap.josm.testutils.annotations.Territories 16 17 class TerritoriesTestIT { 17 18 /**
Note:
See TracChangeset
for help on using the changeset viewer.