public void TestIdUnicoLasClavesSonDiferentes() { IComparable id1 = new IdUnico(); IComparable id2 = new IdUnico(); Assert.IsFalse(id1.CompareTo(id2) == (int)Gabriel.Cat.S.Utilitats.CompareTo.Iguals); }
public void TestIdUnicoLasClavesSonIguales() { IdUnico id1 = new IdUnico(); IComparable id2 = new IdUnico(id1.GetId()); Assert.IsTrue(id2.CompareTo(id1) == (int)Gabriel.Cat.S.Utilitats.CompareTo.Iguals); }
public int CompareTo(Lista other) { int compareTo; if (other != null) { compareTo = IdUnico.CompareTo(other.IdUnico); } else { compareTo = -1; } return(compareTo); }
private int ICompareTo(Tarea other) { return(Equals(other, default) ? -1 : IdUnico.CompareTo(other.IdUnico)); }