Lines Matching full:today
47 /* Work with 2022-09-21 as today (start of spring in Southern hemisphere) */ in test_calendar_set_today_date()
48 lv_calendar_date_t today; in test_calendar_set_today_date() local
49 today.year = 2022; in test_calendar_set_today_date()
50 today.month = 9; in test_calendar_set_today_date()
51 today.day = 21; in test_calendar_set_today_date()
53 lv_calendar_set_today_date(g_calendar, today.year, today.month, today.day); in test_calendar_set_today_date()
57 TEST_ASSERT_EQUAL_INT16(today.year, date_after_test->year); in test_calendar_set_today_date()
58 TEST_ASSERT_EQUAL_INT16(today.month, date_after_test->month); in test_calendar_set_today_date()
59 TEST_ASSERT_EQUAL_INT16(today.day, date_after_test->day); in test_calendar_set_today_date()
64 /* Work with 2022-09-21 as today (start of spring in Southern hemisphere) */ in test_calendar_set_today_date_gui()
65 lv_calendar_date_t today; in test_calendar_set_today_date_gui() local
66 today.year = 2022; in test_calendar_set_today_date_gui()
67 today.month = 9; in test_calendar_set_today_date_gui()
68 today.day = 21; in test_calendar_set_today_date_gui()
70 lv_calendar_set_today_date(g_calendar, today.year, today.month, today.day); in test_calendar_set_today_date_gui()