Diff
Property changes: library/trunk/lib/test/error.class.php
Name: svn:eol-style
- native
+ LF
Property changes: library/trunk/lib/test/result.class.php
Name: svn:eol-style
- native
+ LF
Modified: library/trunk/lib/test/run.bat (12 => 13)
--- library/trunk/lib/test/run.bat 2006-08-15 17:14:00 UTC (rev 12)
+++ library/trunk/lib/test/run.bat 2006-08-15 17:20:26 UTC (rev 13)
@@ -1,5 +1,19 @@
@ECHO OFF
-REM Windows Batch file to run test
+REM /**
+REM * run.bat - template for shell script to run php test, fill in php_bin and php_ini vars
+REM *
+REM * This is released under the GPL, see license.txt for details
+REM *
+REM * @author Elizabeth Smith <emsmith@callicore.net>
+REM * @copyright Elizabeth Smith (c)2006
+REM * @link http://callicore.net
+REM * @license http://www.opensource.org/licenses/gpl-license.php GPL
+REM * @version $Id$
+REM * @since Php 5.2.0
+REM * @package callicore library
+REM * @subpackage test
+REM * @category config
+REM */
REM set this to your php binary
REM example - "c:\program files\php\php.exe"
@@ -24,5 +38,4 @@
GOTO end
:END
-PAUSE
-
+PAUSE
\ No newline at end of file
Property changes on: library/trunk/lib/test/run.bat
___________________________________________________________________
Name: svn:executable
+ *
Modified: library/trunk/lib/test/run.php (12 => 13)
--- library/trunk/lib/test/run.php 2006-08-15 17:14:00 UTC (rev 12)
+++ library/trunk/lib/test/run.php 2006-08-15 17:20:26 UTC (rev 13)
@@ -22,13 +22,8 @@
*/
/**
- * CCL_TEST_LIB is absolute path with slash at end to location of test library files
- */
-define('CCL_TEST_LIB', dirname(__FILE__) . DIRECTORY_SEPARATOR);
-
-/**
* Include and create instance of the test runner class
*/
-include(CCL_TEST_LIB . 'runner.class.php');
+include(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'runner.class.php');
new CCL_TestRunner();
?>
\ No newline at end of file
Property changes on: library/trunk/lib/test/run.php
___________________________________________________________________
Name: tsvn:logminsize
- 15
Name: svn:mime-type
- text/x-php
Modified: library/trunk/lib/test/run.sh (12 => 13)
--- library/trunk/lib/test/run.sh 2006-08-15 17:14:00 UTC (rev 12)
+++ library/trunk/lib/test/run.sh 2006-08-15 17:20:26 UTC (rev 13)
@@ -1,4 +1,19 @@
#!/bin/sh
+#/**
+# * run.sh - template for shell script to run php test, fill in php_bin and php_ini vars
+# *
+# * This is released under the GPL, see license.txt for details
+# *
+# * @author Elizabeth Smith <emsmith@callicore.net>
+# * @copyright Elizabeth Smith (c)2006
+# * @link http://callicore.net
+# * @license http://www.opensource.org/licenses/gpl-license.php GPL
+# * @version $Id$
+# * @since Php 5.2.0
+# * @package callicore library
+# * @subpackage test
+# * @category config
+# */
# path to php cli
# example - /usr/bin/php
Property changes on: library/trunk/lib/test/run.sh
___________________________________________________________________
Name: svn:mime-type
- text/x-sh
Property changes: library/trunk/lib/test/runner.class.php
Name: tsvn:logminsize
- 15
Name: svn:eol-style
- native
+ LF
Modified: library/trunk/lib/test/unit.abstract.php (12 => 13)
--- library/trunk/lib/test/unit.abstract.php 2006-08-15 17:14:00 UTC (rev 12)
+++ library/trunk/lib/test/unit.abstract.php 2006-08-15 17:20:26 UTC (rev 13)
@@ -24,8 +24,8 @@
*
* Extend this class in order to create a test unit - each method starting with
* test (case sensitive) will be executed in isolation when run is called, you
- * can run all the tests or run just a single test. Results are passed to the object
- * sent to the constructor which implements the ccl_testreporter interface
+ * can run all the tests or run just a single test. Results are passed to result
+ * class you send to the constructor
*/
abstract class CCL_TestUnit
{
Property changes on: library/trunk/lib/test/unit.abstract.php
___________________________________________________________________
Name: svn:eol-style
- native
+ LF