Hi again Remco,
Had a discussion with a colleague where he points out an interesting thing; in the example code above,
if I had not split the chained statement over multiple lines (e.g. I had inlined it all on one line) the ball would go green,
even though not all of the code had been exercised.
May it be the same case with conditional expressions?
if (foo() || bar() || baz()) <-- if foo() returns true, then bar() and baz() would not be called at all.
{
// ...
}
?
I know that the built-in Code Coverage functionality in Visual Studio can color lines as partially covered - might this be something
to look into for the next release?
--larsw
--larsw