tasks/ext/coverage/CoverageThresholdTask.php
$Id: CoverageThresholdTask.php 1206 2011-07-03 22:46:44Z bschultz $
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This software consists of voluntary contributions made by many individuals and is licensed under the LGPL. For more information please see http://phing.info.
\CoverageThresholdTask
Stops the build if any of the specified coverage threshold was not reached
- Parent(s)
- \Task < \ProjectComponent
- Author
- Benjamin Schultz
- Since
- 2.4.1
- Version
- $Id: CoverageThresholdTask.php 1206 2011-07-03 22:46:44Z bschultz $
Properties

\PhingFile
$_database= 'null'
Holds an optional database file
nullDetails- Type
- \PhingFile

integer
$_minClassCoverageFound= 'null'
Holds the minimum found coverage value for a class
nullDetails- Type
- integer

integer
$_minMethodCoverageFound= 'null'
Holds the minimum found coverage value for a method
nullDetails- Type
- integer

integer
$_perClass= '25'
Holds the coverage threshold for any class
25Details- Type
- integer

integer
$_perMethod= '25'
Holds the coverage threshold for any method
25Details- Type
- integer

integer
$_perProject= '25'
Holds the coverage threshold for the entire project
25Details- Type
- integer

integer
$_projectStatementCount= '0'
Number of statements in the entire project
0Details- Type
- integer

integer
$_projectStatementsCovered= '0'
Number of covered statements in the entire project
0Details- Type
- integer
Methods

calculateCoverageThreshold(
string $filename, array $coverageInformation
)
:
voidCalculates the coverage threshold
| Name | Type | Description |
|---|---|---|
| $filename | string | The filename to analyse |
| $coverageInformation | array | Array with coverage information |

filterCovered(
integer $var
)
:
booleanFilter covered statements
| Name | Type | Description |
|---|---|---|
| $var | integer | Coverage CODE/count |
| Type | Description |
|---|---|
| boolean |

setClasspath(
\Path $classpath
)
:
voidSets an optional classpath
| Name | Type | Description |
|---|---|---|
| $classpath | \Path | The classpath |

setDatabase(
\PhingFile $database
)
:
voidSets the optional coverage database to use
| Name | Type | Description |
|---|---|---|
| $database | \PhingFile | The database file |

setPerClass(
integer $threshold
)
:
voidSets the coverage threshold for any class
| Name | Type | Description |
|---|---|---|
| $threshold | integer | Coverage threshold for any class |

setPerMethod(
integer $threshold
)
:
voidSets the coverage threshold for any method
| Name | Type | Description |
|---|---|---|
| $threshold | integer | Coverage threshold for any method |

setPerProject(
integer $threshold
)
:
voidSets the coverage threshold for entire project
| Name | Type | Description |
|---|---|---|
| $threshold | integer | Coverage threshold for entire project |