X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2Fsaml1%2Fcore%2Fimpl%2FAssertionTest.h;h=0a723688d4d1bc3e637af24a836ee925f7c5c05c;hb=e9554c255ad3c91c7c4976e7a1a54905903e66a2;hp=b6139fa5684e936bb247f1a589b5a65aa0b88858;hpb=932cfaae2176c2eba1a9938dc420591a9551a7f3;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/saml1/core/impl/AssertionTest.h b/samltest/saml1/core/impl/AssertionTest.h index b6139fa..0a72368 100644 --- a/samltest/saml1/core/impl/AssertionTest.h +++ b/samltest/saml1/core/impl/AssertionTest.h @@ -1,5 +1,5 @@ /* - * Copyright 2001-2007 Internet2 + * Copyright 2001-2010 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,12 +48,12 @@ public: void testSingleElementUnmarshall() { auto_ptr xo(unmarshallElement(singleElementFile)); Assertion& assertion = dynamic_cast(*xo.get()); - TSM_ASSERT("Issuer attribute", assertion.getIssuer()==NULL); + TSM_ASSERT("Issuer attribute", assertion.getIssuer()==nullptr); TSM_ASSERT_EQUALS("IssueInstant attribute", expectedIssueInstant->getEpoch(), assertion.getIssueInstant()->getEpoch()); assertEquals("ID attribute", expectedID, assertion.getAssertionID()); - TSM_ASSERT("Conditions element", assertion.getConditions()==NULL); - TSM_ASSERT("Advice element", assertion.getAdvice()==NULL); + TSM_ASSERT("Conditions element", assertion.getConditions()==nullptr); + TSM_ASSERT("Advice element", assertion.getAdvice()==nullptr); TSM_ASSERT_EQUALS("Statement element count", 0, assertion.getStatements().size()); TSM_ASSERT_EQUALS("SubjectStatements element count", 0, assertion.getSubjectStatements().size()); @@ -71,8 +71,8 @@ public: assertEquals("ID attribute", expectedID, assertion.getAssertionID()); TSM_ASSERT_EQUALS("Issuer expectedMinorVersion", expectedMinorVersion, assertion.getMinorVersion().second); - TSM_ASSERT("Conditions element", assertion.getConditions()==NULL); - TSM_ASSERT("Advice element", assertion.getAdvice()==NULL); + TSM_ASSERT("Conditions element", assertion.getConditions()==nullptr); + TSM_ASSERT("Advice element", assertion.getAdvice()==nullptr); TSM_ASSERT_EQUALS("Statement element count", 0, assertion.getStatements().size()); TSM_ASSERT_EQUALS("SubjectStatements element count", 0, assertion.getSubjectStatements().size()); @@ -85,12 +85,12 @@ public: auto_ptr xo(unmarshallElement(childElementsFile)); Assertion& assertion = dynamic_cast(*xo.get()); - TSM_ASSERT("Issuer attribute", assertion.getIssuer()==NULL); + TSM_ASSERT("Issuer attribute", assertion.getIssuer()==nullptr); TSM_ASSERT_EQUALS("IssueInstant attribute", expectedIssueInstant->getEpoch(), assertion.getIssueInstant()->getEpoch()); assertEquals("ID attribute", expectedID, assertion.getAssertionID()); - TSM_ASSERT("Conditions element null", assertion.getConditions()!=NULL); - TSM_ASSERT("Advice element null", assertion.getAdvice()!=NULL); + TSM_ASSERT("Conditions element null", assertion.getConditions()!=nullptr); + TSM_ASSERT("Advice element null", assertion.getAdvice()!=nullptr); TSM_ASSERT_EQUALS("AuthenticationStatements element count", 2, assertion.getAuthenticationStatements().size()); TSM_ASSERT_EQUALS("AttributeStatements element count", 3, assertion.getAttributeStatements().size());