Skip to content

Commit 51851a6

Browse files
committed
Unit tests to ensure equality assertions with sets + comparer func throw an exception
1 parent ca68393 commit 51851a6

File tree

2 files changed

+61
-1
lines changed

2 files changed

+61
-1
lines changed

test/test.xunit.assert/Asserts/EqualityAssertsTests.cs

+60
Original file line numberDiff line numberDiff line change
@@ -1308,6 +1308,21 @@ public void DifferentTypes_NotEqual()
13081308
ex.Message
13091309
);
13101310
}
1311+
1312+
[Fact]
1313+
public void ComparerFunc_Throws()
1314+
{
1315+
var expected = new HashSet<string> { "bar" };
1316+
var actual = new HashSet<string> { "baz" };
1317+
1318+
var ex = Record.Exception(() => Assert.Equal(expected, actual, (string l, string r) => true));
1319+
1320+
Assert.IsType<EqualException>(ex);
1321+
Assert.Equal(
1322+
"Assert.Equal() Failure: During comparison of two collections, GetHashCode was called, but only a comparison function was provided. This typically indicates trying to compare two sets with an item comparison function, which is not supported. For more information, see https://xunit.net/docs/hash-sets-vs-linear-containers",
1323+
ex.Message
1324+
);
1325+
}
13111326
}
13121327

13131328
public class Sets
@@ -1475,6 +1490,21 @@ void assertFailure(Action action)
14751490
assertFailure(() => Assert.Equal(expected, (ISet<string>)actual));
14761491
assertFailure(() => Assert.Equal(expected, (object)actual));
14771492
}
1493+
1494+
[Fact]
1495+
public void ComparerFunc_Throws()
1496+
{
1497+
var expected = new NonGenericSet { "bar" };
1498+
var actual = new HashSet<string> { "baz" };
1499+
1500+
var ex = Record.Exception(() => Assert.Equal(expected, actual, (string l, string r) => true));
1501+
1502+
Assert.IsType<EqualException>(ex);
1503+
Assert.Equal(
1504+
"Assert.Equal() Failure: During comparison of two collections, GetHashCode was called, but only a comparison function was provided. This typically indicates trying to compare two sets with an item comparison function, which is not supported. For more information, see https://xunit.net/docs/hash-sets-vs-linear-containers",
1505+
ex.Message
1506+
);
1507+
}
14781508
}
14791509

14801510
public class KeyValuePair
@@ -3285,6 +3315,21 @@ public void DifferentTypes_NotEqual()
32853315

32863316
Assert.NotEqual(expected, actual);
32873317
}
3318+
3319+
[Fact]
3320+
public void ComparerFunc_Throws()
3321+
{
3322+
var expected = new HashSet<string> { "bar" };
3323+
var actual = new HashSet<string> { "baz" };
3324+
3325+
var ex = Record.Exception(() => Assert.NotEqual(expected, actual, (string l, string r) => false));
3326+
3327+
Assert.IsType<NotEqualException>(ex);
3328+
Assert.Equal(
3329+
"Assert.NotEqual() Failure: During comparison of two collections, GetHashCode was called, but only a comparison function was provided. This typically indicates trying to compare two sets with an item comparison function, which is not supported. For more information, see https://xunit.net/docs/hash-sets-vs-linear-containers",
3330+
ex.Message
3331+
);
3332+
}
32883333
}
32893334

32903335
public class Sets
@@ -3439,6 +3484,21 @@ public void TwoGenericSubClass_NotEqual()
34393484
Assert.NotEqual(expected, (ISet<string>)actual);
34403485
Assert.NotEqual(expected, (object)actual);
34413486
}
3487+
3488+
[Fact]
3489+
public void ComparerFunc_Throws()
3490+
{
3491+
var expected = new NonGenericSet { "bar" };
3492+
var actual = new HashSet<string> { "baz" };
3493+
3494+
var ex = Record.Exception(() => Assert.NotEqual(expected, actual, (string l, string r) => false));
3495+
3496+
Assert.IsType<NotEqualException>(ex);
3497+
Assert.Equal(
3498+
"Assert.NotEqual() Failure: During comparison of two collections, GetHashCode was called, but only a comparison function was provided. This typically indicates trying to compare two sets with an item comparison function, which is not supported. For more information, see https://xunit.net/docs/hash-sets-vs-linear-containers",
3499+
ex.Message
3500+
);
3501+
}
34423502
}
34433503

34443504
public class Strings

0 commit comments

Comments
 (0)