-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comparing datatables with dbnull in expectation doesn't cause test to fail when subject has a value #2
Comments
Thanks for reporting this. I did some quick investigations, but I don't have a solution/workaround yet. The case can effectively be reduced to this: [Fact]
public void DbNull_is_not_equivalent_to_something_else()
{
var actual = new { Value = "fail" };
var a = new { Value = DBNull.Value };
actual.Should().NotBeEquivalentTo(a);
} Our property |
The reason for this is that You can work around this by using the
So maybe we should treat |
One workaround for now is to define an extension method public static class DataEquivalencyAssertionOptionsExtensions
{
public static IDataEquivalencyAssertionOptions<T> ComparingByValue<T, TType>(this IDataEquivalencyAssertionOptions<T> options)
{
((EquivalencyAssertionOptions<T>)options).ComparingByValue<TType>();
return options;
}
} and then write the test as actual.Should().BeEquivalentTo(expected, opt => opt.ComparingByValue<DataTable, DBNull>()); By special handling, do you think of adding an explicit I'm wondering whether adding special handling for |
True. I was basing my analysis on your
To add it as a well-known type to the
I haven't seen them up to now, but that doesn't mean anything. |
Ahh, had thought about that one. |
Another workaround for now is to hook into the default MSTest has For .NET 5 or greater one can use the Dump this class in the test project internal static class Initializer
{
[ModuleInitializer]
public static void SetDefaults()
{
AssertionOptions.AssertEquivalencyUsing(options => options
.Using<DBNull>(ctx => ctx.Subject.Should().Be(ctx.Expectation))
.WhenTypeIs<DBNull>());
}
} and the provided test now fails as expected with
|
Although I personally hardly use |
Should this be moved to |
Description
Comparing DataTables where a column in the expectation containing a dbnull value passes comparison regardless of the value in the same column in the subject.
Complete minimal example reproducing the issue
Expected behavior:
The test to fail because "Column2" in the expectation is null while it has a value of "fail" in the subject
Actual behavior:
The test passes. Reversing the order leads to the test failing as expected, i.e.,
fails.
Versions
Additional Information
Any additional information, configuration or data that might be necessary to reproduce the issue.
The text was updated successfully, but these errors were encountered: