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