X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=xmltoolingtest%2FMemoryStorageServiceTest.h;h=509ac6d179a96cf0759fa1c740e350118a663797;hb=2a45f2268892124b72e677aa65c6e2d730e0318d;hp=e36e115c88d3c47be8b256405ecd273b0b2f4131;hpb=94dd26632cd5c0badca6990b1cc93f200e615a89;p=shibboleth%2Fcpp-xmltooling.git diff --git a/xmltoolingtest/MemoryStorageServiceTest.h b/xmltoolingtest/MemoryStorageServiceTest.h index e36e115..509ac6d 100644 --- a/xmltoolingtest/MemoryStorageServiceTest.h +++ b/xmltoolingtest/MemoryStorageServiceTest.h @@ -1,5 +1,5 @@ /* - * Copyright 2001-2006 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. @@ -28,17 +28,17 @@ public: void testMemoryService() { auto_ptr storage( - XMLToolingConfig::getConfig().StorageServiceManager.newPlugin(MEMORY_STORAGE_SERVICE,NULL) + XMLToolingConfig::getConfig().StorageServiceManager.newPlugin(MEMORY_STORAGE_SERVICE,nullptr) ); string data; TSM_ASSERT_EQUALS("Record found in storage.", 0, storage->readString("context", "foo1", &data)); - storage->createString("context", "foo1", "bar1", time(NULL) + 60); - storage->createString("context", "foo2", "bar2", time(NULL) + 60); + storage->createString("context", "foo1", "bar1", time(nullptr) + 60); + storage->createString("context", "foo2", "bar2", time(nullptr) + 60); TSM_ASSERT_EQUALS("Record not found in storage.", 1, storage->readString("context", "foo1", &data)); TSM_ASSERT_EQUALS("Record value doesn't match.", data, "bar1"); TSM_ASSERT_EQUALS("Update failed.", 2, storage->updateString("context", "foo2", "bar1", 0, 1)); - TSM_ASSERT_EQUALS("Record not found in storage.", 2, storage->readString("context", "foo2", &data, NULL, 1)); + TSM_ASSERT_EQUALS("Record not found in storage.", 2, storage->readString("context", "foo2", &data, nullptr, 1)); TSM_ASSERT_EQUALS("Record value doesn't match.", data, "bar1"); TSM_ASSERT("Delete failed.", storage->deleteString("context", "foo2")); storage->reap("context");