How can intelliTest do full code cover
I use intelliTest and found that is very difficulty for me to full code cover a method.So I write some test code:
public class InstanceA
{
private int[] m_int;
public void Func2()
{
}
}
yes,just simple code, and then I create intelliTest and run for the "Func2".IntelliTest show 1/3 blocks covered. I can not understand, I have do nothing in the Func2, so where is the two uncoverd blocks?If I declare m_int with "int" not
"int[]", IntelliTest show 1/1 blocks.What happened with intelliTest exploration?