Hi, I am searching for an assertion library, which is kind of hassle free.
What I mean, that I shouldn't add clues for nice assertion error messages.
Something similar to FluentAssertions for dotnet.
```string accountNumber = "1234567890";
accountNumber.Should().Be("0987654321");```
This will be reported as:
Expected accountNumber to be “0987654321”, but “1234567890” differs near “123” (index 0).
```var numbers = new[] { 1, 2, 3 };
numbers.Should().Contain(item => item > 3, "at least {0} item should be larger than 3", 1);```
will fail with:
Expected numbers to have an item matching (item > 3) because at least 1 item should be larger than 3.