Forum member

majblackburn

1 post

Posts by majblackburn

  1. coverage on conditional statements

    If a conditional block is controlled by an OR statement, the block is considered "covered" if there is one test that enters the loop from either condition For example: if (targetTime < startTime || targetTime > endTime) {} The block is marked "covered" if one of the two conditions is met in a t…