-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Labels
Description
When configuring reporters like below:
<reporters>
<reporter>
<name>UT_DOCUMENTATION_REPORTER</name>
</reporter>
<reporter>
<name>UT_COVERAGE_SONAR_REPORTER</name>
<fileOutput>coverage-sonar-reporter.xml</fileOutput>
</reporter>
<reporter>
<name>UT_SONAR_TEST_REPORTER</name>
<fileOutput>utplsql/sonar-test-reporter.xml</fileOutput>
<consoleOutput>true</consoleOutput>
</reporter>
</reporters>
The behavior should be:
- UT_DOCUMENTATION_REPORTER has true, since is not specified
- UT_COVERAGE_SONAR_REPORTER has false, since is specified
- UT_SONAR_TEST_REPORTER respects the explicit setting of
The current behavior is not correct for situation when neither nor is specified. In such case, should be defaulted to TRUE.
In case when is specified, should default to FALSE.