Beispiel #1
0
 public void AtypicalLeap()
 {
     Assert.True(LeapYear.IsLeap(2000));
 }
Beispiel #2
0
 public void TypicalLeap()
 {
     Assert.True(LeapYear.IsLeap(1992));
 }
Beispiel #3
0
 public void AtypicalCommonYear()
 {
     Assert.False(LeapYear.IsLeap(1900));
 }
Beispiel #4
0
 public void CommonYear()
 {
     Assert.False(LeapYear.IsLeap(1993));
 }