我想测试以下两种(不相关的)方法并使用 OpenCover 2.0.802.1 实现完整的分支和语句覆盖
public class Methods
{
public static void MethodWithDelegate(SynchronizationContext context)
{
context.Send(delegate { Console.Beep(); }, null);
}
public static string MethodWithSwitchStatement(Type value)
{
string output = string.Empty;
if (value != null)
{
switch (value.ToString())
{
case "System.Int32":
output = "int";
break;
default:
output = "other type";
break;
}
}
return output;
}
}
我编写了以下(NUnit)测试,其中一个使用“Moq”模拟对象:
[Test]
public void Test_ShouldCoverMethodWithDelegate()
{
var context = new Mock<SynchronizationContext>();
Methods.MethodWithDelegate(context.Object);
context.Verify(x => x.Send(It.IsAny<SendOrPostCallback>(), It.IsAny<object>()));
}
[Test]
public void Test_ShouldCoverSwitchStatement()
{
Assert.That(Methods.MethodWithSwitchStatement(null), Is.EqualTo(string.Empty));
Assert.That(Methods.MethodWithSwitchStatement(typeof(int)), Is.EqualTo("int"));
Assert.That(Methods.MethodWithSwitchStatement(typeof(float)), Is.EqualTo("other type"));
}
但是,在通过 OpenCover 运行测试后,该coverage.xml
文件始终包含一个分支点,两个测试的访问计数均为零。序列覆盖率显示为 100%。
作为 IL 专家,我不确定如何编写进一步的测试以使分支覆盖率达到 100%。