Check for key value pair with out case
Is it possible to ignore the case when asserting a key value pair present in dictionary. Any option Contains() will do this?
Nope. Sorry. But I do accept pull requests ;-)
thank you. I will try :)
This seems like an unusual one considering that the dictionary itself doesn't work that way unless a custom comparer is used. @dennisdoomen Does fluent assertions leverage the comparer of the dictionary when doing such comparisons or does it always do the same thing regardless of the dictionary comparer?
It relies on the object.Equals for most of the comparisons, so it should be possible to create such an enhancement.