I have the following situation:
string[] expected = null;
string[] result = null;
result.Should().Equal(expected) // Throws Exception
"Expected collection to be equal, but found <null>."
Since the result is equal to the expected, this should not throw an exception.
string[] expected = null;
string[] result = null;
result.Should().Equal(expected) // Throws Exception
"Expected collection to be equal, but found <null>."
Since the result is equal to the expected, this should not throw an exception.