Sha256: 25d85f97deb5bf7225f1c06412da22e452adbcae5a67a0070f417765694112ab
Contents?: true
Size: 755 Bytes
Versions: 187
Compression:
Stored size: 755 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
187 entries across 187 versions & 1 rubygems