Modified:
trunk/xyexception-tests/all.tests.php
trunk/xyexception-tests/xyexception.test.php
Log:
Fixed some sourcecodedocumentation issues
Modified: trunk/xyexception-tests/all.tests.php
==============================================================================
--- trunk/xyexception-tests/all.tests.php (original)
+++ trunk/xyexception-tests/all.tests.php Sat Mar 24 14:10:43 2007
@@ -9,6 +9,7 @@
## Defines ##
+/** Define AllTests::main as startup method if not already done */
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'AllTests::main');
}
@@ -23,7 +24,13 @@
require_once 'PHPUnit/TextUI/TestRunner.php';
## The Testsuite ##
-
+
+/**
+ * Make all Tests
+ *
+ * @author Uwe L. Korn <uw...@xhochy.org>
+ * @package XYException-Tests
+ */
class AllTests
{
public static function main()
Modified: trunk/xyexception-tests/xyexception.test.php
==============================================================================
--- trunk/xyexception-tests/xyexception.test.php (original)
+++ trunk/xyexception-tests/xyexception.test.php Sat Mar 24 14:10:43 2007
@@ -3,16 +3,13 @@
* This file tests the XYException
*
* @author Uwe L. Korn <uw...@xhochy.org>
- * @package XYException-Test
+ * @package XYException-Tests
* @license http://opensource.org/licenses/mit-license.php MIT
*/
-## Defines ##
-
-define('SCHOORBS_NOGUI',true);
-
## Main XYException Code Includes ##
+/** Load the class definition */
require_once dirname(__FILE__).'/../xyexception-includes/xyexception.exception.php';
## PHPUnit Includes ##
@@ -25,7 +22,7 @@
/**
* Testsuite for the XYException class
*
- * @package XYException-Test
+ * @package XYException-Tests
* @author Uwe L. Korn <uw...@xhochy.org>
*/
class XYExceptionTest extends PHPUnit_Extensions_ExceptionTestCase