shouldly Questions
1
Solved
I'm using the excellent Shouldly library in my xUnit tests and I'm finding myself using the set sequence of assertions in different tests, so I'm combining them into new assertion extension methods...
Mundane asked 6/5, 2020 at 2:22
2
Solved
I am running c# tests using ShouldBe and I have this code:
int x = 3;
int y = 3;
x.ShouldBeSameAs(y);
Problem is it throws exception:
An exception of type 'Shouldly.ShouldAssertException' ...
1
Solved
Is there a way to test the exception messages with shouldly?
An example:
public class MyException: Exception{
}
The method to be tested:
public class ClassUnderTest
{
public void DoSomething(...
2
Solved
The Shouldly assertion library for .NET somehow knows what expression the assertion method was called on so it is able to display it into the message. I tried to find out how it works but got lost ...
1
© 2022 - 2024 — McMap. All rights reserved.