Author: jablko
Date: Tue Sep 8 13:51:42 2009
New Revision: 3189
Log:
Bring unit tests up to date for changes to Qubit
Modified:
trunk/test/unit/informationObjectTest.php
trunk/test/unit/repositoryTest.php
Modified: trunk/test/unit/informationObjectTest.php
==============================================================================
--- trunk/test/unit/informationObjectTest.php Tue Sep 8 13:48:30 2009
(r3188)
+++ trunk/test/unit/informationObjectTest.php Tue Sep 8 13:51:42 2009
(r3189)
@@ -25,6 +25,6 @@
$t->isa_ok($informationObject->__toString(), 'string',
'->__toString returns a string');
-$informationObject->setTitle('test title');
+$informationObject->title = 'test title';
$t->is($informationObject->__toString(), 'test title',
'->__toString returns the title');
Modified: trunk/test/unit/repositoryTest.php
==============================================================================
--- trunk/test/unit/repositoryTest.php Tue Sep 8 13:48:30 2009 (r3188)
+++ trunk/test/unit/repositoryTest.php Tue Sep 8 13:51:42 2009 (r3189)
@@ -25,6 +25,6 @@
$t->isa_ok($repository->__toString(), 'string',
'->__toString returns a string');
-$repository->setAuthorizedFormOfName('test name');
+$repository->authorizedFormOfName = 'test name';
$t->is($repository->__toString(), 'test name',
'->__toString returns the authorized form of name');
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---