-
```
For FEST-Assert, we'd like to have specific support for Date assertions, e.g.:
assertThat(actualDate)
.isEqualIgnoreTime(expectedDate);
assertThat(actualDate)
.isBefore(expectedDate);
asser…
-
Refactor existing tests to use [FluentAssertions](https://fluentassertions.com/) instead of `Assert.*` methods, to get better feedback than "True should be False" when a test fails.
This can be autom…
-
While the Hamcrest repo is still [active](https://github.com/hamcrest/JavaHamcrest/commits/master), the latest release is from [Oct 16, 2019 ](https://github.com/hamcrest/JavaHamcrest/tags)
I thi…
-
**Describe the bug**
AssertJ allows extracting values from the original object using "extracting" method in order to test them in a more fluent way. AssertJ also allows using InstanceOfAssertFactory …
-
### Description
When testing that some code should throw an exception the generated error message is not very helpful (especially when using `.And`).
### Complete minimal example reproducing the…
-
```
For FEST-Assert, we'd like to have specific support for Date assertions, e.g.:
assertThat(actualDate)
.isEqualIgnoreTime(expectedDate);
assertThat(actualDate)
.isBefore(expectedDate);
asser…
-
### Description
Add support for [Span](https://docs.microsoft.com/en-us/dotnet/api/system.span-1?view=netcore-2.1) and [ReadOnlySpan](https://docs.microsoft.com/en-us/dotnet/api/system.readonlyspan…
-
```
For FEST-Assert, we'd like to have specific support for Date assertions, e.g.:
assertThat(actualDate)
.isEqualIgnoreTime(expectedDate);
assertThat(actualDate)
.isBefore(expectedDate);
asser…
-
```c#
// DateTime? nullableDate = ...
nullableDate
.Should()
.NotBeNull()
.And.Subject.Value
.Should();
// Or perhaps safer:
nullableDate
.Should()
.NotBeNull()…
-
Earlier today I had to write a unit test against the `TempData` property and wondered if there was any support in this library for this - there is not.
The problem that I have is that `TempData` is b…