This commit is contained in:
Bill Burke 2016-07-27 10:37:16 -04:00
parent 46b4bb0909
commit bd499e1c55
2 changed files with 3 additions and 5 deletions

View file

@ -244,11 +244,6 @@
<artifactId>picketlink-wildfly-common</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-federation</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-undertow</artifactId>

View file

@ -16,6 +16,7 @@
*/
package org.keycloak.testsuite.saml;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.keycloak.common.util.PemUtils;
@ -74,6 +75,7 @@ public class ValidationTest {
} catch (SAXException e) {
System.out.println(xmlFile.getSystemId() + " is NOT valid");
System.out.println("Reason: " + e.getLocalizedMessage());
Assert.fail();
}
}
@Test
@ -93,6 +95,7 @@ public class ValidationTest {
} catch (SAXException e) {
System.out.println(xmlFile.getSystemId() + " is NOT valid");
System.out.println("Reason: " + e.getLocalizedMessage());
Assert.fail();
}
}
}