Author: FrankStelzer
Date: 2010-01-14 13:50:41 +0100 (Thu, 14 Jan 2010)
New Revision: 26623
Modified:
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateFunctionalTestTask.class.php
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateTestTask.class.php
Log:
[sfPhpunitPlugin] added require of base task class
Modified:
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateFunctionalTestTask.class.php
===================================================================
---
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateFunctionalTestTask.class.php
2010-01-14 12:34:11 UTC (rev 26622)
+++
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateFunctionalTestTask.class.php
2010-01-14 12:50:41 UTC (rev 26623)
@@ -1,4 +1,7 @@
<?php
+
+require_once(dirname(__FILE__).'/sfPhpunitCreateBaseTask.class.php');
+
/**
* Task for creating functional test files for PHPUnit testing
*
Modified:
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateTestTask.class.php
===================================================================
---
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateTestTask.class.php
2010-01-14 12:34:11 UTC (rev 26622)
+++
plugins/sfPhpunitPlugin/branches/1.2_compat/lib/task/sfPhpunitCreateTestTask.class.php
2010-01-14 12:50:41 UTC (rev 26623)
@@ -1,4 +1,7 @@
<?php
+
+require_once(dirname(__FILE__).'/sfPhpunitCreateBaseTask.class.php');
+
/**
* Task for creating unit test files for PHPUnit testing
*
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" 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.com/group/symfony-svn?hl=en.