8 instantiations of EquatableObject
Microsoft.DotNet.XUnitAssert.Tests (8)
EqualityAssertsTests.cs (8)
1627 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
1628 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
1636 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
1637 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'b' }, 42);
1657 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
1658 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
1666 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
1667 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'b' });
10 references to EquatableObject
Microsoft.DotNet.XUnitAssert.Tests (10)
EqualityAssertsTests.cs (10)
1627 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
1628 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
1636 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
1637 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'b' }, 42);
1657 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
1658 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
1666 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
1667 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'b' });
1680 public class EquatableObject : IEquatable<EquatableObject>
1684 public bool Equals(EquatableObject? other) =>