8 instantiations of EquatableObject
Microsoft.DotNet.XUnitAssert.Tests (8)
EqualityAssertsTests.cs (8)
3855 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
3856 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
3872 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
3873 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'b' }, 42);
3885 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
3886 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
3902 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
3903 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'b' });
10 references to EquatableObject
Microsoft.DotNet.XUnitAssert.Tests (10)
EqualityAssertsTests.cs (10)
3855 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
3856 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
3872 var expected = new KeyValuePair<EquatableObject, int>(new() { Char = 'a' }, 42);
3873 var actual = new KeyValuePair<EquatableObject, int>(new() { Char = 'b' }, 42);
3885 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
3886 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
3902 var expected = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'a' });
3903 var actual = new KeyValuePair<string, EquatableObject>("Key1", new() { Char = 'b' });
3908 public class EquatableObject : IEquatable<EquatableObject>
3912 public bool Equals(EquatableObject? other) =>