zoe             Mon May 25 08:56:23 2009 UTC

  Modified files:              
    /phpruntests/src/configuration      rtAddToCommandLine.php rtSetting.php 
                                        rtRuntestsConfiguration.php 
                                        rtEnvironmentVariables.php 
                                        rtPreConditionList.php 
                                        rtIniAsCommandLineArgs.php 
                                        rtPreCondition.php 
                                        rtCommandLineOptions.php 
  Log:
  doc blocks
  
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtAddToCommandLine.php?r1=1.2&r2=1.3&diff_format=u
Index: phpruntests/src/configuration/rtAddToCommandLine.php
diff -u phpruntests/src/configuration/rtAddToCommandLine.php:1.2 
phpruntests/src/configuration/rtAddToCommandLine.php:1.3
--- phpruntests/src/configuration/rtAddToCommandLine.php:1.2    Mon Apr 20 
20:24:30 2009
+++ phpruntests/src/configuration/rtAddToCommandLine.php        Mon May 25 
08:56:23 2009
@@ -1,9 +1,18 @@
 <?php
-
 /**
- * Command line arguments can be supplied by an env variable. This class 
ensures 
- * that additional arguments are parsed
+ * rtAddToCommandLine
  *
+ * Command line arguments can be supplied by an env variable. 
+ * This class ensures that additional arguments are parsed
+ * 
+ * @category   Testing
+ * @package    RUNTESTS
+ * @author     Zoe Slattery <[email protected]>
+ * @author     Stefan Priebsch <[email protected]>
+ * @copyright  2009 The PHP Group
+ * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
+ * @link       http://qa.php.net/
+ * 
  */
 class rtAddToCommandLine
 {
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtSetting.php?r1=1.4&r2=1.5&diff_format=u
Index: phpruntests/src/configuration/rtSetting.php
diff -u phpruntests/src/configuration/rtSetting.php:1.4 
phpruntests/src/configuration/rtSetting.php:1.5
--- phpruntests/src/configuration/rtSetting.php:1.4     Tue May 12 09:15:19 2009
+++ phpruntests/src/configuration/rtSetting.php Mon May 25 08:56:23 2009
@@ -1,12 +1,20 @@
 <?php
-
 /**
+ * rtSetting
+ * 
  * Classes that set things in the test configuration.
  * Settings may instantiate other settings to retrieve values they need.
  * This leads to some settings being instantiated multiple times, and
  * being redundantly calculated, but makes settings independent from the order 
  * in which they are processed in rtRuntestsConfiguration.
- *
+ * 
+ * @category  Testing
+ * @package   RUNTESTS
+ * @author    Zoe Slattery <[email protected]>
+ * @author    Stefan Priebsch <[email protected]>
+ * @copyright 2009 The PHP Group
+ * @license   http://www.php.net/license/3_01.txt PHP License 3.01
+ * @link      http://qa.php.net/
  */
 abstract class rtSetting
 {
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtRuntestsConfiguration.php?r1=1.10&r2=1.11&diff_format=u
Index: phpruntests/src/configuration/rtRuntestsConfiguration.php
diff -u phpruntests/src/configuration/rtRuntestsConfiguration.php:1.10 
phpruntests/src/configuration/rtRuntestsConfiguration.php:1.11
--- phpruntests/src/configuration/rtRuntestsConfiguration.php:1.10      Sun May 
17 13:58:50 2009
+++ phpruntests/src/configuration/rtRuntestsConfiguration.php   Mon May 25 
08:56:23 2009
@@ -1,23 +1,12 @@
 <?php
 /**
  * rtRuntestsConfiguration
- *
- * @category  Testing
- * @package   RUNTESTS
- * @author    Zoe Slattery <[email protected]>
- * @author    Stefan Priebsch <[email protected]>
- * @copyright 2009 The PHP Group
- * @license   http://www.php.net/license/3_01.txt PHP License 3.01
- * @link      http://qa.php.net/
- */
-
-/**
+ * 
  * Sets up the configuration for the whole test run
  *
  * Settings are derived from command line options and/or environment variables.
- * Runtests also overrides a number of ini settings.
+ * Runtests also overrides a number of ini settings. 
  * 
- *
  * @category  Testing
  * @package   RUNTESTS
  * @author    Zoe Slattery <[email protected]>
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtEnvironmentVariables.php?r1=1.4&r2=1.5&diff_format=u
Index: phpruntests/src/configuration/rtEnvironmentVariables.php
diff -u phpruntests/src/configuration/rtEnvironmentVariables.php:1.4 
phpruntests/src/configuration/rtEnvironmentVariables.php:1.5
--- phpruntests/src/configuration/rtEnvironmentVariables.php:1.4        Sun May 
17 13:58:50 2009
+++ phpruntests/src/configuration/rtEnvironmentVariables.php    Mon May 25 
08:56:23 2009
@@ -1,9 +1,18 @@
 <?php
-
 /**
- * Class to retrieve the values of environmnetal variables and store them
- * Needs some changes - don't document till complete
+ * rtEnvironmentVariables
  *
+ * Class to retrieve the values of environmental variables and 
+ * store them.
+ * 
+ * @category   Testing
+ * @package    RUNTESTS
+ * @author     Zoe Slattery <[email protected]>
+ * @author     Stefan Priebsch <[email protected]>
+ * @copyright  2009 The PHP Group
+ * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
+ * @link       http://qa.php.net/
+ * 
  */
 class rtEnvironmentVariables
 {
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtPreConditionList.php?r1=1.5&r2=1.6&diff_format=u
Index: phpruntests/src/configuration/rtPreConditionList.php
diff -u phpruntests/src/configuration/rtPreConditionList.php:1.5 
phpruntests/src/configuration/rtPreConditionList.php:1.6
--- phpruntests/src/configuration/rtPreConditionList.php:1.5    Wed May 13 
11:10:54 2009
+++ phpruntests/src/configuration/rtPreConditionList.php        Mon May 25 
08:56:23 2009
@@ -1,9 +1,18 @@
 <?php
-
 /**
- * Class containing the base set of pre-conditions that must be met whatever
- * platform run-tests is executed on
+ * rtPreCondtionList
  *
+ * Class containing the base set of pre-conditions that must be 
+ * met whatever platform (OS) run-tests is executed on
+ * 
+ * @category   Testing
+ * @package    RUNTESTS
+ * @author     Zoe Slattery <[email protected]>
+ * @author     Stefan Priebsch <[email protected]>
+ * @copyright  2009 The PHP Group
+ * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
+ * @link       http://qa.php.net/
+ * 
  */
 abstract class rtPreConditionList
 {
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtIniAsCommandLineArgs.php?r1=1.3&r2=1.4&diff_format=u
Index: phpruntests/src/configuration/rtIniAsCommandLineArgs.php
diff -u phpruntests/src/configuration/rtIniAsCommandLineArgs.php:1.3 
phpruntests/src/configuration/rtIniAsCommandLineArgs.php:1.4
--- phpruntests/src/configuration/rtIniAsCommandLineArgs.php:1.3        Fri Apr 
24 08:41:25 2009
+++ phpruntests/src/configuration/rtIniAsCommandLineArgs.php    Mon May 25 
08:56:23 2009
@@ -1,5 +1,18 @@
 <?php
-
+/**
+ * rtIniAsCommandLineArgs
+ *
+ * Class to handle overrides of ini settings in run-tests
+ * 
+ * @category   Testing
+ * @package    RUNTESTS
+ * @author     Zoe Slattery <[email protected]>
+ * @author     Stefan Priebsch <[email protected]>
+ * @copyright  2009 The PHP Group
+ * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
+ * @link       http://qa.php.net/
+ * 
+ */
 class rtIniAsCommandLineArgs
 {
     protected $iniOverwrites = array(
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtPreCondition.php?r1=1.3&r2=1.4&diff_format=u
Index: phpruntests/src/configuration/rtPreCondition.php
diff -u phpruntests/src/configuration/rtPreCondition.php:1.3 
phpruntests/src/configuration/rtPreCondition.php:1.4
--- phpruntests/src/configuration/rtPreCondition.php:1.3        Mon May 11 
11:29:30 2009
+++ phpruntests/src/configuration/rtPreCondition.php    Mon May 25 08:56:23 2009
@@ -1,12 +1,22 @@
 <?php
-
 /**
- * A pre-condtion for running a test
+ * rtPreCondtion
+ *
+ * Parent class for run pre-condidtions
+ * 
+ * @category   Testing
+ * @package    RUNTESTS
+ * @author     Zoe Slattery <[email protected]>
+ * @author     Stefan Priebsch <[email protected]>
+ * @copyright  2009 The PHP Group
+ * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
+ * @link       http://qa.php.net/
+ * 
  */
 class rtPreCondition
 {
     /**
-     * The message to use if teh pre-condition is not met
+     * The message to use if the pre-condition is not met
      *
      */
     public function getMessage()
http://cvs.php.net/viewvc.cgi/phpruntests/src/configuration/rtCommandLineOptions.php?r1=1.4&r2=1.5&diff_format=u
Index: phpruntests/src/configuration/rtCommandLineOptions.php
diff -u phpruntests/src/configuration/rtCommandLineOptions.php:1.4 
phpruntests/src/configuration/rtCommandLineOptions.php:1.5
--- phpruntests/src/configuration/rtCommandLineOptions.php:1.4  Mon May 11 
21:28:16 2009
+++ phpruntests/src/configuration/rtCommandLineOptions.php      Mon May 25 
08:56:23 2009
@@ -1,11 +1,17 @@
 <?php
 /**
- * Parse command line options
- *
- * @package control
- * @author  Zoe Slattery <[email protected]>
- * @license PHP http://www.php.net/license/3_01.txt
+ * rtCommandLineOptions
  *
+ * Parse command line options for run-tests.php
+ * 
+ * @category   Testing
+ * @package    RUNTESTS
+ * @author     Zoe Slattery <[email protected]>
+ * @author     Stefan Priebsch <[email protected]>
+ * @copyright  2009 The PHP Group
+ * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
+ * @link       http://qa.php.net/
+ * 
  */
 class rtCommandLineOptions
 {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to