Convert from NULL macro to nullptr.
[shibboleth/cpp-xmltooling.git] / xmltoolingtest / MemoryStorageServiceTest.h
index 7c16f9d..509ac6d 100644 (file)
@@ -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.
@@ -28,17 +28,17 @@ public:
 
     void testMemoryService() {
         auto_ptr<StorageService> 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");