IsLeapYear() public static method

public static IsLeapYear ( int year ) : bool
year int
return bool
コード例 #1
0
 public void CanTestForLeapYears(bool expectedResult, int year) => Assert.That(expectedResult, Is.EqualTo(LeapYear.IsLeapYear(year)));
コード例 #2
0
 public void CanTestForLeapYear() => Assert.That(true, Is.EqualTo(LeapYear.IsLeapYear(1996)));