From 94dd26632cd5c0badca6990b1cc93f200e615a89 Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Wed, 24 Jan 2007 23:41:19 +0000 Subject: [PATCH] Align tests to new API. --- xmltoolingtest/MemoryStorageServiceTest.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xmltoolingtest/MemoryStorageServiceTest.h b/xmltoolingtest/MemoryStorageServiceTest.h index 830e17b..e36e115 100644 --- a/xmltoolingtest/MemoryStorageServiceTest.h +++ b/xmltoolingtest/MemoryStorageServiceTest.h @@ -32,13 +32,13 @@ public: ); string data; - TSM_ASSERT("Record found in storage.", !storage->readString("context", "foo1", &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); - TSM_ASSERT("Record not found in storage.", storage->readString("context", "foo1", &data)); + 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("Update failed.", storage->updateString("context", "foo2", "bar1")); - TSM_ASSERT("Record not found in storage.", storage->readString("context", "foo2", &data)); + 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 value doesn't match.", data, "bar1"); TSM_ASSERT("Delete failed.", storage->deleteString("context", "foo2")); storage->reap("context"); -- 2.1.4