After migrating, I can't find the `IsAfter` assertion for a `DateTime` value. ```cs await Assert.That(dateTimeAfter).IsAfter(dateTimeBefore); ``` Though I found a workaround using `IsGreaterThan`, I still think `IsAfter` is more expressive.
After migrating, I can't find the
IsAfterassertion for aDateTimevalue.Though I found a workaround using
IsGreaterThan, I still thinkIsAfteris more expressive.