From: Scott Cantor Date: Wed, 24 Jan 2007 23:41:19 +0000 (+0000) Subject: Align tests to new API. X-Git-Tag: 1.0-alpha1~111 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-xmltooling.git;a=commitdiff_plain;h=94dd26632cd5c0badca6990b1cc93f200e615a89 Align tests to new API. --- 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");