Changeset 63
- Timestamp:
- 05/04/06 11:42:35 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/classes/phing/tasks/ext/phpunit2/PHPUnit2ReportTask.php
r62 r63 78 78 $this->toDir = $toDir; 79 79 } 80 80 81 /** 82 * Returns the path to the XSL stylesheet 83 */ 81 84 private function getStyleSheet() 82 85 { … … 111 114 return $file; 112 115 } 113 114 function transform($document) 116 117 /** 118 * Transforms the DOM document 119 */ 120 private function transform(DOMDocument $document) 115 121 { 116 122 $dir = new PhingFile($this->toDir); … … 151 157 * package="default" to those elements. 152 158 */ 153 function fixPackages(DOMDocument $document)159 private function fixPackages(DOMDocument $document) 154 160 { 155 161 $testsuites = $document->getElementsByTagName('testsuite'); … … 169 175 * @throws BuildException 170 176 */ 171 function main()177 public function main() 172 178 { 173 179 $testSuitesDoc = new DOMDocument();
