SAML2\AssertionTest::testMissingAuthnInstantThrowsException PHP Метод

testMissingAuthnInstantThrowsException() публичный Метод

AuthnStatement must have AuthnInstant attribute, if missing throw Exception.
    public function testMissingAuthnInstantThrowsException()
    {
        $xml = <<<XML
<saml:Assertion xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"
                ID="_593e33ddf86449ce4d4c22b60ac48e067d98a0b2bf"
                Version="2.0"
                IssueInstant="2010-03-05T13:34:28Z"
>
  <saml:Issuer>testIssuer</saml:Issuer>
  <saml:AuthnStatement>
    <saml:AuthnContext>
      <saml:AuthnContextClassRef>someAuthnContext</saml:AuthnContextClassRef>
      <saml:AuthenticatingAuthority>someIdP1</saml:AuthenticatingAuthority>
    </saml:AuthnContext>
  </saml:AuthnStatement>
</saml:Assertion>
XML;
        $document = DOMDocumentFactory::fromString($xml);
        $this->setExpectedException('Exception', "Missing required AuthnInstant attribute on <saml:AuthnStatement>");
        $assertion = new Assertion($document->firstChild);
    }
AssertionTest