Open inyutin-maxim opened 2 years ago
GeoLocation result = new GeoLocation { Latitude = 1.456789123, Longitude = 1.987654123 }; Assert.NotStrictEqual(new GeoLocation { Latitude = 1.456789123, Longitude = 1.987654123 }, result);
Can be replaced with:
result.Should() .BeEquivalentTo(new GeoLocation { Latitude = 1.456789123, Longitude = 1.987654123 }, options => options.WithoutStrictOrdering());
This replacement incorrect working, i searching another solution
Can be replaced with: