Skip to content

Commit

Permalink
Fix code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
GillesTourreau committed Jun 10, 2024
1 parent f4015f7 commit b3f2691
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ public class TestClass
public void TestMethod()
{
var mock1 = new Mock<C>([|1, 2|]);
var mock2 = new Mock<C>([|null|]);
}
}
Expand Down Expand Up @@ -213,6 +214,7 @@ public class TestClass
public void TestMethod()
{
var mock1 = new Mock<C>(MockBehavior.Strict, [|1, 2|]);
var mock2 = new Mock<C>(MockBehavior.Strict, [|null|]);
}
}
Expand Down

0 comments on commit b3f2691

Please sign in to comment.