示例#1
0
 public void GetLong()
 {
     Assert.AreEqual((long)2, EntityWithIdOfLong.Range(0, 10).Get((long)2).Id);
 }
示例#2
0
 public void GetLongFail()
 {
     EntityWithIdOfLong.Range(0, 10).Get((long)100);
 }
示例#3
0
 public void GetOrNullLongFail()
 {
     Assert.IsNull(EntityWithIdOfLong.Range(0, 10).GetOrNull((long)100));
 }