Ejemplo n.º 1
0
 public void HashCodes_AreNotEqual_ForUnequalColours(Colour4 other)
 {
     colour.GetHashCode().ShouldNotBe(other.GetHashCode());
 }
Ejemplo n.º 2
0
 public void HashCodes_AreEqual_ForEqualColours(Colour4 other)
 {
     colour.GetHashCode().ShouldBe(other.GetHashCode());
 }