Issue with Code coverage measures

My ServiceController.cs file shows 38 line to cover:

But when I open the file I see coverage as 100% and still see 38 lines to cover.
All the 38 lines are marked green showing covered by tests, but I don’t see anything with a red mark indicating not covered by tests:

Hi,

I understand your confusion. “Lines to Cover” here really just means “Coverable Lines”, it doesn’t mean “Lines not yet Covered”.

 
HTH,
Ann

Got it!
Thank you.