|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
4
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
5
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
6
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
7
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
8
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
9
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
10
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
11
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
12
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
13
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
14
|
|
|
* |
|
15
|
|
|
* This software consists of voluntary contributions made by many individuals |
|
16
|
|
|
* and is licensed under the LGPL. For more information please see |
|
17
|
|
|
* <http://phing.info>. |
|
18
|
|
|
*/ |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* Prints short summary output of the test to Phing's logging system. |
|
22
|
|
|
* |
|
23
|
|
|
* @author Michiel Rook <[email protected]> |
|
24
|
|
|
* @package phing.tasks.ext.formatter |
|
25
|
|
|
* @since 2.1.0 |
|
26
|
|
|
*/ |
|
27
|
|
|
class SummaryPHPUnitResultFormatter extends PHPUnitResultFormatter |
|
28
|
|
|
{ |
|
29
|
2 |
|
public function endTestRun() |
|
30
|
|
|
{ |
|
31
|
2 |
|
parent::endTestRun(); |
|
32
|
|
|
|
|
33
|
2 |
|
$sb = "Total tests run: " . $this->getRunCount(); |
|
34
|
2 |
|
$sb .= ", Risky: " . $this->getRiskyCount(); |
|
35
|
2 |
|
$sb .= ", Warnings: " . $this->getWarningCount(); |
|
36
|
2 |
|
$sb .= ", Failures: " . $this->getFailureCount(); |
|
37
|
2 |
|
$sb .= ", Errors: " . $this->getErrorCount(); |
|
38
|
2 |
|
$sb .= ", Incomplete: " . $this->getIncompleteCount(); |
|
39
|
2 |
|
$sb .= ", Skipped: " . $this->getSkippedCount(); |
|
40
|
2 |
|
$sb .= ", Time elapsed: " . sprintf('%0.5f', $this->getElapsedTime()) . " s\n"; |
|
41
|
|
|
|
|
42
|
2 |
|
if ($this->out != null) { |
|
43
|
2 |
|
$this->out->write($sb); |
|
44
|
2 |
|
$this->out->close(); |
|
45
|
|
|
} |
|
46
|
2 |
|
} |
|
47
|
|
|
|
|
48
|
|
|
/** |
|
49
|
|
|
* @return null |
|
50
|
|
|
*/ |
|
51
|
|
|
public function getExtension() |
|
52
|
|
|
{ |
|
53
|
|
|
return null; |
|
54
|
|
|
} |
|
55
|
|
|
} |
|
56
|
|
|
|