13 references to IntWrapper
Microsoft.DotNet.XUnitAssert.Tests (13)
Asserts\EqualityAssertsTests.cs (13)
4771 IEquatable<IntWrapper> 4775 public bool Equals(IntWrapper? other) => Value == other!.Value; 4779 IEquatable<IntWrapper> 4783 bool IEquatable<IntWrapper>.Equals(IntWrapper? other) => Value == other!.Value; 4787 IComparable<IntWrapper> 4791 public int CompareTo(IntWrapper? other) => Value.CompareTo(other!.Value); 4795 IComparable<IntWrapper> 4799 int IComparable<IntWrapper>.CompareTo(IntWrapper? other) => Value.CompareTo(other!.Value); 4803 IComparable<IntWrapper> 4807 public int CompareTo(IntWrapper? other) => 4810 public override bool Equals(object? obj) => Value == ((IntWrapper?)obj)!.Value;