public void GetHashCodeTest() { SqlInt16 Test15 = new SqlInt16(15); // FIXME: Better way to test GetHashCode()-methods Assert.AreEqual(Test15.GetHashCode(), Test15.GetHashCode(), "Test#1"); }
public void GetHashCodeTest() { SqlInt16 test15 = new SqlInt16(15); // FIXME: Better way to test GetHashCode()-methods Assert.Equal(test15.GetHashCode(), test15.GetHashCode()); }
public override int GetHashCode() { var hashCode = _sql.GetHashCode(); return(hashCode); }