예제 #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));
 }