Slide 27
Slide 27 text
(like: FluentAssertion, Sharp Tests Ex, etc.)
• Their usage of lambda expression predicates hurts the fluent
experience
new[] { 1, 2, 3 }.Should().Contain(item => item > 3, "at least {0} item should be larger than 3", 1);
• (Red is dead, but) Should is weak…
• We aim to be more ambitious in term of fluentness
NFLUENT VS. OTHER
ASSERTION LIBRARIES?