1 write to Value
Microsoft.DotNet.XUnitAssert.Tests (1)
EqualityAssertsTests.cs (1)
684
Value
= value;
5 references to Value
Microsoft.DotNet.XUnitAssert.Tests (5)
EqualityAssertsTests.cs (5)
548
public bool Equals(IntWrapper? other) => Value == other!.
Value
;
578
bool IEquatable<IntWrapper>.Equals(IntWrapper? other) => Value == other!.
Value
;
608
public int CompareTo(IntWrapper? other) => Value.CompareTo(other!.
Value
);
638
int IComparable<IntWrapper>.CompareTo(IntWrapper? other) => Value.CompareTo(other!.
Value
);
673
public override bool Equals(object? obj) => Value == ((IntWrapper?)obj)!.
Value
;