Author: ts
Date: Wed Feb 13 20:51:46 2008
New Revision: 7361

Log:
- Doc fixes.

Modified:
    trunk/UnitTest/src/constraint/image.php
    trunk/UnitTest/src/runtests.php
    trunk/UnitTest/src/test/case.php
    trunk/UnitTest/src/test/database_settings.php
    trunk/UnitTest/src/test/image_case.php
    trunk/UnitTest/src/test/printer.php
    trunk/UnitTest/src/test/runner.php
    trunk/UnitTest/src/test/settings.php

Modified: trunk/UnitTest/src/constraint/image.php
==============================================================================
--- trunk/UnitTest/src/constraint/image.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/constraint/image.php [iso-8859-1] Wed Feb 13 20:51:46 
2008
@@ -1,8 +1,8 @@
 <?php
 /**
- * File contaning the image comparision constraint.
+ * File contaning the ezcTestConstraintSimilarImage class.
  *
- * @package Graph
+ * @package UnitTest
  * @version //autogentag//
  * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
@@ -13,9 +13,10 @@
 PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
 
 /**
- * Constraint for image comparison.
+ * Constraint class for image comparison.
  *
- * @package Unittest
+ * @package UnitTest
+ * @version //autogentag//
  */
 class ezcTestConstraintSimilarImage extends PHPUnit_Framework_Constraint
 {

Modified: trunk/UnitTest/src/runtests.php
==============================================================================
--- trunk/UnitTest/src/runtests.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/runtests.php [iso-8859-1] Wed Feb 13 20:51:46 2008
@@ -1,4 +1,12 @@
 <?php
+/**
+ * File contaning the execution script for the eZ Components test runner.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
+ * @license http://ez.no/licenses/new_bsd New BSD License
+ */
 require_once 'PHPUnit/Util/Filter.php';
 
 PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');

Modified: trunk/UnitTest/src/test/case.php
==============================================================================
--- trunk/UnitTest/src/test/case.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/test/case.php [iso-8859-1] Wed Feb 13 20:51:46 2008
@@ -1,9 +1,23 @@
 <?php
+/**
+ * File contaning the abstract ezcTestCase class.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
+ * @license http://ez.no/licenses/new_bsd New BSD License
+ */
 require_once 'PHPUnit/Framework/TestCase.php';
 require_once 'PHPUnit/Util/Filter.php';
 
 PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
 
+/**
+ * Abstract base class for all eZ Components test cases.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ */
 abstract class ezcTestCase extends PHPUnit_Framework_TestCase
 {
     /**

Modified: trunk/UnitTest/src/test/database_settings.php
==============================================================================
--- trunk/UnitTest/src/test/database_settings.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/test/database_settings.php [iso-8859-1] Wed Feb 13 
20:51:46 2008
@@ -1,9 +1,9 @@
 <?php
 /**
- * File containing the ezcTestDatabaseSettings class
+ * File containing the ezcTestDatabaseSettings class.
  *
  * @package UnitTest
- * @version //autogen//
+ * @version //autogentag//
  * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */
@@ -16,7 +16,7 @@
  * This class represents the structure of all the database settings.
  * 
  * @package UnitTest
- * @version //autogen//
+ * @version //autogentag//
  */
 class ezcTestDatabaseSettings
 {

Modified: trunk/UnitTest/src/test/image_case.php
==============================================================================
--- trunk/UnitTest/src/test/image_case.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/test/image_case.php [iso-8859-1] Wed Feb 13 20:51:46 2008
@@ -1,9 +1,23 @@
 <?php
+/**
+ * File contaning the ezcTestImageCase.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
+ * @license http://ez.no/licenses/new_bsd New BSD License
+ */
 require_once 'PHPUnit/Framework/TestCase.php';
 require_once 'PHPUnit/Util/Filter.php';
 
 PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
 
+/**
+ * Abstract base class for image related test cases.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ */
 abstract class ezcTestImageCase extends ezcTestCase
 {
     /**

Modified: trunk/UnitTest/src/test/printer.php
==============================================================================
--- trunk/UnitTest/src/test/printer.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/test/printer.php [iso-8859-1] Wed Feb 13 20:51:46 2008
@@ -1,9 +1,23 @@
 <?php
+/**
+ * File contaning the ezcTestPrinter class.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
+ * @license http://ez.no/licenses/new_bsd New BSD License
+ */
 require_once 'PHPUnit/TextUI/ResultPrinter.php';
 require_once 'PHPUnit/Util/Filter.php';
 
 PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
 
+/**
+ * Test printer class.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ */
 class ezcTestPrinter extends PHPUnit_TextUI_ResultPrinter
 {
     public function __construct( $verbose = false )

Modified: trunk/UnitTest/src/test/runner.php
==============================================================================
--- trunk/UnitTest/src/test/runner.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/test/runner.php [iso-8859-1] Wed Feb 13 20:51:46 2008
@@ -1,9 +1,23 @@
 <?php
+/**
+ * File contaning the ezcTestRunner class.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
+ * @license http://ez.no/licenses/new_bsd New BSD License
+ */
 require_once 'PHPUnit/TextUI/TestRunner.php';
 require_once 'PHPUnit/Util/Filter.php';
 
 PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
 
+/**
+ * Test runner to run eZ Components test suites.
+ *
+ * @package UnitTest
+ * @version //autogentag//
+ */
 class ezcTestRunner extends PHPUnit_TextUI_TestRunner
 {
     const SUITE_FILENAME = "tests/suite.php";

Modified: trunk/UnitTest/src/test/settings.php
==============================================================================
--- trunk/UnitTest/src/test/settings.php [iso-8859-1] (original)
+++ trunk/UnitTest/src/test/settings.php [iso-8859-1] Wed Feb 13 20:51:46 2008
@@ -3,7 +3,7 @@
  * File containing the ezcTestSettings class
  *
  * @package UnitTest
- * @version //autogen//
+ * @version //autogentag//
  * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
  * @license http://ez.no/licenses/new_bsd New BSD License
  */
@@ -13,11 +13,12 @@
 PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
 
 /**
- * This object stores the settings from the TestRunner. Every TestCase can get
- * the instance of this object, and access the settings. 
+ * This object stores the settings from the TestRunner.
+ *
+ * Every TestCase can get the instance of this object, and access the 
settings. 
  * 
  * @package UnitTest
- * @version //autogen//
+ * @version //autogentag//
  */
 class ezcTestSettings
 {


-- 
svn-components mailing list
svn-components@lists.ez.no
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to