views:

131

answers:

1

what do the following options mean or whats it for

<log type="coverage-html" target="./log/report" charset="UTF-8" yui="true" highlight="true"
    lowUpperBound="50" highLowerBound="80"/>
  • yui: i guess it means use stuff from yahoo ui to make it look good?
  • highlight: maybe have some colors?
  • lowUpperBound, highLowerbound: whats these?
+1  A: 

lowUpperBound = your idea till which percentage code should be covered to be regarded as low. By default everything below 35 is low. You specified everything below 50 as low meaning your tests will be harder to get out of the red.

highUpperBound = the same as lowUpperBound but for the minimum percentage the coverage should have before you regard it as high coverage. By default it is 70. So again you made your code statistically more difficult to qualify.

:)

Nick Belhomme http://blog.nickbelhomme.com

NickBelhomme