Sha256: 997c73520d2a388c3515ca8dae33f8d67d812e56bde88dd63217bca5e4052ccb
Contents?: true
Size: 736 Bytes
Versions: 91
Compression:
Stored size: 736 Bytes
Contents
// This file was auto-generated based on version 1.0.0 of the canonical data. using Xunit; public class LeapTest { [Fact] public void Year_not_divisible_by_4_is_common_year() { Assert.False(Leap.IsLeapYear(2015)); } [Fact(Skip = "Remove to run test")] public void Year_divisible_by_4_not_divisible_by_100_is_leap_year() { Assert.True(Leap.IsLeapYear(2016)); } [Fact(Skip = "Remove to run test")] public void Year_divisible_by_100_not_divisible_by_400_is_common_year() { Assert.False(Leap.IsLeapYear(2100)); } [Fact(Skip = "Remove to run test")] public void Year_divisible_by_400_is_leap_year() { Assert.True(Leap.IsLeapYear(2000)); } }
Version data entries
91 entries across 91 versions & 1 rubygems