X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2Fsaml2%2Fcore%2Fimpl%2FRequestedAuthnContext20Test.h;h=88cc9b9ba5567478ddb3759adc3cf7343823b3fa;hb=e9554c255ad3c91c7c4976e7a1a54905903e66a2;hp=619755ff1ba2c9bce257bd1acfbf1410e35ef93b;hpb=932cfaae2176c2eba1a9938dc420591a9551a7f3;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/saml2/core/impl/RequestedAuthnContext20Test.h b/samltest/saml2/core/impl/RequestedAuthnContext20Test.h index 619755f..88cc9b9 100644 --- a/samltest/saml2/core/impl/RequestedAuthnContext20Test.h +++ b/samltest/saml2/core/impl/RequestedAuthnContext20Test.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. @@ -42,8 +42,8 @@ public: void testSingleElementUnmarshall() { auto_ptr xo(unmarshallElement(singleElementFile)); RequestedAuthnContext* rac = dynamic_cast(xo.get()); - TS_ASSERT(rac !=NULL); - TS_ASSERT(rac->getComparison()==NULL); + TS_ASSERT(rac !=nullptr); + TS_ASSERT(rac->getComparison()==nullptr); TSM_ASSERT_EQUALS("# of AuthnContextClassRef child elements", 0, rac->getAuthnContextClassRefs().size()); TSM_ASSERT_EQUALS("# of AuthnContextDeclRef child elements", 0, rac->getAuthnContextDeclRefs().size()); @@ -52,7 +52,7 @@ public: void testSingleElementOptionalAttributesUnmarshall() { auto_ptr xo(unmarshallElement(singleElementOptionalAttributesFile)); RequestedAuthnContext* rac = dynamic_cast(xo.get()); - TS_ASSERT(rac!=NULL); + TS_ASSERT(rac!=nullptr); assertEquals("Comparison attribute", expectedComparison, rac->getComparison()); TSM_ASSERT_EQUALS("# of AuthnContextClassRef child elements", 0, rac->getAuthnContextClassRefs().size()); @@ -62,8 +62,8 @@ public: void testChildElementsUnmarshall() { auto_ptr xo(unmarshallElement(childElementsFile)); RequestedAuthnContext* rac = dynamic_cast(xo.get()); - TS_ASSERT(rac !=NULL); - TS_ASSERT(rac->getComparison()==NULL); + TS_ASSERT(rac !=nullptr); + TS_ASSERT(rac->getComparison()==nullptr); TSM_ASSERT_EQUALS("# of AuthnContextClassRef child elements", 3, rac->getAuthnContextClassRefs().size()); TSM_ASSERT_EQUALS("# of AuthnContextDeclRef child elements", 0, rac->getAuthnContextDeclRefs().size());