patch.diff

Chetan Thapliyal, 2009-07-07 12:21

Download (603 Bytes)

 
new/class.tx_phpunit_database_testcase.php 2009-07-07 12:11:12.000000000 +0200
11 11
	 */
12 12
	protected $testDatabase;
13 13

  
14
	public function __construct($name = null) {
15
		parent::__construct($name);
14
	public function __construct( $name=null, array $data=array(), $dataName='' ) {
15

  
16
		# Invoke parent constructor
17
		parent::__construct( $name, $data, $dataName );
18 16

  
19 17
		$this->testDatabase = strtolower(TYPO3_db.'_test');
20 18
	}
......
299 297
		}
300 298
	}
301 299
}
300
?>
302
?>