public void HashCodes_AreNotEqual_ForUnequalColours(Colour4 other) { colour.GetHashCode().ShouldNotBe(other.GetHashCode()); }
public void HashCodes_AreEqual_ForEqualColours(Colour4 other) { colour.GetHashCode().ShouldBe(other.GetHashCode()); }