Last active
June 8, 2020 18:48
-
-
Save codingtim/9b3ba67625ae0c8b28df15aa8f173a99 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
void revoked() throws IOException { | |
get("https://revoked.sca1a.amazontrust.com/", urlConnection -> { | |
assertThatExceptionOfType(SSLHandshakeException.class) | |
.isThrownBy(urlConnection::getResponseCode) | |
.withRootCauseInstanceOf(CertificateRevokedException.class); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment