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