mirror of
https://github.com/php/pftt2.git
synced 2026-03-24 17:22:08 +01:00
17 lines
379 B
Groovy
17 lines
379 B
Groovy
|
|
def describe() {
|
|
"""Monitor and report PHP code coverage using Xdebug (Dynamic Run-Time Analysis).
|
|
|
|
ANSWERS How much of application was tested?
|
|
"""
|
|
}
|
|
|
|
def scenarios() {
|
|
// @see PhpUnitTemplate#renderTemplate
|
|
// -it will now collect the code coverage data
|
|
// -and the test case runner will provide it to the test-pack which will store it
|
|
//
|
|
new XDebugScenario()
|
|
}
|
|
|