/**
  * @expectedException \LightSaml\Error\LightSamlValidationException
  * @expectedExceptionMessage AuthnContextDeclRef has a value which is not a wellformed absolute uri
  */
 public function test_authn_context_decl_ref_must_be_well_formed_uri_string()
 {
     $authnContext = new AuthnContext();
     $authnContext->setAuthnContextDeclRef('in valid');
     $authnStatement = new AuthnStatement();
     $authnStatement->setAuthnInstant(123456789);
     $authnStatement->setAuthnContext($authnContext);
     $validator = new StatementValidator();
     $validator->validateStatement($authnStatement);
 }