Changeset 18893 in josm for trunk/test/unit/org/openstreetmap/josm/io/CertificateAmendmentTestIT.java
- Timestamp:
- 2023-11-02T13:14:51+01:00 (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/io/CertificateAmendmentTestIT.java
r18690 r18893 13 13 import javax.net.ssl.SSLHandshakeException; 14 14 15 import org.junit.ClassRule;16 15 import org.junit.jupiter.api.BeforeAll; 17 16 import org.junit.jupiter.api.Test; 17 import org.junit.jupiter.api.Timeout; 18 18 import org.openstreetmap.josm.TestUtils; 19 import org.openstreetmap.josm.testutils.JOSMTestRules; 20 21 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 19 import org.openstreetmap.josm.testutils.annotations.HTTPS; 22 20 23 21 /** 24 22 * Integration tests of {@link CertificateAmendment} class. 25 23 */ 24 @HTTPS 25 @Timeout(20) 26 26 class CertificateAmendmentTestIT { 27 28 /**29 * Setup rule30 */31 @ClassRule32 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")33 public static JOSMTestRules test = new JOSMTestRules().https().preferences().timeout(20000);34 35 27 private static final List<String> errorsToIgnore = new ArrayList<>(); 36 28
Note:
See TracChangeset
for help on using the changeset viewer.