凯特在这里有一点。我的项目有一个硬 100% 的代码覆盖率阈值,并且 switch 表达式永远不会被完全覆盖,即使等效的 switch 语句是。
这是一个例子:
以下 switch 语句在我的项目中提供了 100% 的代码覆盖率:
switch (values[3])
{
case "F": return new string(Convert.ToString(value, 2).Reverse().ToArray()).PadRight(max, '0');
case "G": return $"{value} of {max}";
case "R" when value == 0: return $"none of {max}";
case "R" when value == 1: return $"1st of {max}";
case "R" when value == 2: return $"2nd of {max}";
case "R" when value == 3: return $"3rd of {max}";
default: return $"{value}th of {max}";
}
等效的 switch 表达式仅给出 99.91%,并且在 Jenkins 上构建失败:
return values[3] switch
{
"F" => new string(Convert.ToString(value, 2).Reverse().ToArray()).PadRight(max, '0'),
"G" => $"{value} of {max}",
"R" when value == 0 => $"none of {max}",
"R" when value == 1 => $"1st of {max}",
"R" when value == 2 => $"2nd of {max}",
"R" when value == 3 => $"3rd of {max}",
_ => $"{value}th of {max}"
};
并且代码覆盖着色并不表示没有覆盖哪个分支,因为它标记了整个语句。
我认为这是编译器如何生成表达式的最终 IL 的问题。它应该作为 C# 错误解决并提交给 Microsoft 进行修复。