I'm trying to establish equivalence of two lists using FluentAssertions in C#, where two things are of importance:
- the elements are compared by the values they hold, not by reference (i.e. they are equivalent, not equal)
- the order of the elements in the lists is important
Is there no function in FluentAssertions (or even NUnit) that does this?
Cheers!