void test_mutt_date_check_month(void)
{
// int mutt_date_check_month(const char *s);
+
+ {
+ TEST_CHECK(mutt_date_check_month(NULL) != 0);
+ }
}
void test_mutt_date_is_day_name(void)
{
// bool mutt_date_is_day_name(const char *s);
+
+ {
+ TEST_CHECK(!mutt_date_is_day_name(NULL));
+ }
}
void test_mutt_date_localtime_format(void)
{
// size_t mutt_date_localtime_format(char *buf, size_t buflen, char *format, time_t t);
+
+ {
+ TEST_CHECK(mutt_date_localtime_format(NULL, 10, "apple", 0) == 0);
+ }
+
+ {
+ char buf[32] = { 0 };
+ TEST_CHECK(mutt_date_localtime_format(buf, sizeof(buf), NULL, 0) == 0);
+ }
}
void test_mutt_date_make_date(void)
{
// char *mutt_date_make_date(char *buf, size_t buflen);
+
+ {
+ TEST_CHECK(!mutt_date_make_date(NULL, 10));
+ }
}
void test_mutt_date_make_imap(void)
{
// int mutt_date_make_imap(char *buf, size_t buflen, time_t timestamp);
+
+ {
+ TEST_CHECK(mutt_date_make_imap(NULL, 10, 0) != 0);
+ }
}
void test_mutt_date_make_time(void)
{
// time_t mutt_date_make_time(struct tm *t, bool local);
+
+ {
+ TEST_CHECK(mutt_date_make_time(NULL, false) != 0);
+ }
}
void test_mutt_date_make_tls(void)
{
// int mutt_date_make_tls(char *buf, size_t buflen, time_t timestamp);
+
+ {
+ TEST_CHECK(mutt_date_make_tls(NULL, 10, 0) != 0);
+ }
}
void test_mutt_date_normalize_time(void)
{
// void mutt_date_normalize_time(struct tm *tm);
+
+ {
+ mutt_date_normalize_time(NULL);
+ TEST_CHECK_(1, "mutt_date_normalize_time(NULL)");
+ }
}
void test_mutt_date_parse_date(void)
{
// time_t mutt_date_parse_date(const char *s, struct Tz *tz_out);
+
+ {
+ struct Tz tz = { 0 };
+ TEST_CHECK(mutt_date_parse_date(NULL, &tz) != 0);
+ }
+
+ {
+ TEST_CHECK(mutt_date_parse_date("apple", NULL) != 0);
+ }
}
void test_mutt_date_parse_imap(void)
{
// time_t mutt_date_parse_imap(const char *s);
+
+ {
+ TEST_CHECK(mutt_date_parse_imap(NULL) == 0);
+ }
}