I am trying to demonstrate that 100% statement coverage does not mean much in terms of proving and testing. I cannot think of any easy example, this is my best attempt:
TestObject t = null;
if (Console.ReadLine() == "A")
{
t = new TestObject();
t.Value = 5;
}
Console.WriteLine(t.Value); //exception only when the IF statement was not run as the variable remains null.
Also when user presses "A", the statement coverage is 100%. However when anything else is pressed, the exception occurs.