diff options
Diffstat (limited to 'tests/UnitTests/framework/common.php')
-rw-r--r-- | tests/UnitTests/framework/common.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/UnitTests/framework/common.php b/tests/UnitTests/framework/common.php index 9f52ce41..9b7b1b37 100644 --- a/tests/UnitTests/framework/common.php +++ b/tests/UnitTests/framework/common.php @@ -50,13 +50,14 @@ class PradoUnitTestCase extends UnitTestCase { }
+
/**
* Generate a class called MockTApplication to mock the TApplication class
* for the purpose of testing IModule objects.
*/
__autoload("TApplication");
Mock::generate("TApplication");
-
+
/**
* ModuleTestCase class.
*
@@ -75,7 +76,7 @@ class ModuleTestCase extends PradoUnitTestCase { public function __construct() {
$file = "";
- $tihs->mockApplication =& new MockTApplication($file);
+ $tihs->mockApplication = new MockTApplication($file);
}
public function testGetSetID() {
@@ -103,5 +104,4 @@ class ModuleTestCase extends PradoUnitTestCase { }
}
-
?>
\ No newline at end of file |