Sha256: 13a53c8da76885b5ecd4a23e0f3a9d72219e9c93f3bbf7a50178ef4a1754fe09
Contents?: true
Size: 756 Bytes
Versions: 73
Compression:
Stored size: 756 Bytes
Contents
#include "vendor/unity.h" #include "../src/leap.h" void test_a_known_leap_year(void) { TEST_ASSERT_TRUE(is_leap_year(1996)); } void test_any_old_year(void) { TEST_ASSERT_FALSE(is_leap_year(1997)); } void test_turn_of_the_20th_century(void) { TEST_ASSERT_FALSE(is_leap_year(1900)); } void test_turn_of_the_21st_century(void) { TEST_ASSERT_TRUE(is_leap_year(2000)); } void test_turn_of_the_25th_century(void) { TEST_ASSERT_TRUE(is_leap_year(2400));; } int main(void) { UnityBegin("test/test_leap.c"); RUN_TEST(test_a_known_leap_year); RUN_TEST(test_any_old_year); RUN_TEST(test_turn_of_the_20th_century); RUN_TEST(test_turn_of_the_21st_century); RUN_TEST(test_turn_of_the_25th_century); UnityEnd(); return 0; }
Version data entries
73 entries across 73 versions & 1 rubygems