src/SSC/ValueStateExtensions.cs
実行済みCoberturaのhit数が1以上の行です。
未実行カバレッジ対象ですがhit数が0の行です。
対象外Coberturaに実行対象として記録されていない行です。
| 行 | 行状態 | Hits | Source |
|---|---|---|---|
| 1 | 対象外 | — | namespace SSC; |
| 2 | 対象外 | — | |
| 3 | 対象外 | — | public static class ValueStateExtensions |
| 4 | 対象外 | — | { |
| 5 | 未実行 | 0 | public static bool IsMissing(this ValueState state) => state == ValueState.Missing; |
| 6 | 対象外 | — | |
| 7 | 未実行 | 0 | public static bool IsMatched(this ValueState state) => state == ValueState.Matched; |
| 8 | 対象外 | — | |
| 9 | 未実行 | 0 | public static bool IsMismatched(this ValueState state) => state == ValueState.Mismatched; |
| 10 | 対象外 | — | |
| 11 | 対象外 | — | internal static ValueState ToComparisonState(bool hasComparisonTarget, bool matched) |
| 12 | 対象外 | — | { |
| 13 | 実行済み | 696 | if (!hasComparisonTarget) |
| 14 | 対象外 | — | { |
| 15 | 未実行 | 0 | return ValueState.Missing; |
| 16 | 対象外 | — | } |
| 17 | 対象外 | — | |
| 18 | 実行済み | 696 | return matched ? ValueState.Matched : ValueState.Mismatched; |
| 19 | 対象外 | — | } |
| 20 | 対象外 | — | } |