Example #1
0
 public void HashCodes_AreNotEqual_ForUnequalColours(Colour4 other)
 {
     colour.GetHashCode().ShouldNotBe(other.GetHashCode());
 }
Example #2
0
 public void HashCodes_AreEqual_ForEqualColours(Colour4 other)
 {
     colour.GetHashCode().ShouldBe(other.GetHashCode());
 }