[pLog-svn] r4464 - plog/branches/lifetype-1.1.4/class/test/helpers

oscar at devel.lifetype.net oscar at devel.lifetype.net
Mon Jan 1 18:45:00 GMT 2007


Author: oscar
Date: 2007-01-01 18:44:59 +0000 (Mon, 01 Jan 2007)
New Revision: 4464

Modified:
   plog/branches/lifetype-1.1.4/class/test/helpers/testtools.class.php
Log:
TestTools::deleteDaoTestData() can now delete user comments too.

Modified: plog/branches/lifetype-1.1.4/class/test/helpers/testtools.class.php
===================================================================
--- plog/branches/lifetype-1.1.4/class/test/helpers/testtools.class.php	2007-01-01 17:51:46 UTC (rev 4463)
+++ plog/branches/lifetype-1.1.4/class/test/helpers/testtools.class.php	2007-01-01 18:44:59 UTC (rev 4464)
@@ -200,6 +200,10 @@
 					$users = new Users();
 					$users->deleteUser( $item->getId());
 				}
+				elseif( $className == "usercomment" ) {
+					$comments = new ArticleComments();
+					$comments->deleteComment( $item->getId());
+				}
 				else {
 					print("Unrecognized object of class $className" );
 					print_r( $item );



More information about the pLog-svn mailing list