vote up 0 vote down star

I'm trying to obtain full code coverage for the following line of code...

stringWriter.Write(HtmlEncodedString.Format(string.Format("{0,-10:C}", x + y)))

The line above this one is showing as fully covered and is just writing out a string but this one is only showing as partially covered.

Anybody have any ideas how I can make this line fully covered?

flag
6  
What CC tool are you using? – Robert Fraser Oct 26 at 16:45

1 Answer

vote up 0 vote down

Are there perhaps return codes or exceptions from either of the Format() methods that your tests do not currently trigger?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.