示例#1
0
文件: CurrentTest.cs 项目: avs009/gsf
 public void GetHashCodeTest()
 {
     Current target = new Current(10F);
     int expected = 1076101120;
     int actual;
     actual = target.GetHashCode();
     Assert.AreEqual(expected, actual);
 }