|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [JIRA] (JENKINS-14587) NullPointerException with ... [email protected] (JIRA)
- [JIRA] (JENKINS-14587) NullPointerException ... [email protected] (JIRA)
- [JIRA] (JENKINS-14587) NullPointerException ... [email protected] (JIRA)

Discovered the reason for this was due to the format of the report being wrong. In the example Phing configuration on the plugin page (https://wiki.jenkins-ci.org/display/JENKINS/Clover+PHP+Plugin) the code should read:
<phpunit printsummary="true" codecoverage="true">
<formatter todir="reports" type="clover" outfile="coverage/coverage.xml" />
<batchtest>
<fileset dir="test">
<include name="**/*Test.php" />
</fileset>
</batchtest>
</phpunit>
Notice the formatter type is changed from 'xml' to 'clover'. Hope this helps!