I got two objects with the same data, double, long, string my problem is in object A all strings are upper case and in object B upper and lower.
objectA.Should.Should().BeEquivalentTo(objectB);
The comparison fails saying
Expected member stringName to be "Super" but "SUPER" differs near "UPER"
Is there any way to say if the we compare string ignore that it is all capital or convert an all capital string?
I could run a foreach loop go through everything and convert but I wonder if I can include my comparison to my fluent assert.