mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-15 00:13:14 +01:00
25 lines
370 B
C
25 lines
370 B
C
|
#ifndef __DATE_TEST__
|
||
|
#define __DATE_TEST__
|
||
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
#include "libcproject.h"
|
||
|
|
||
|
void date_test();
|
||
|
|
||
|
void date_copy_test();
|
||
|
|
||
|
void date_to_iso_string_test();
|
||
|
|
||
|
void date_to_iso_string_without_time_test();
|
||
|
|
||
|
void date_from_iso_string_test();
|
||
|
|
||
|
void date_get_is_leap_year_test();
|
||
|
|
||
|
void date_duration_seconds_between_2_dates_test();
|
||
|
|
||
|
void date_to_utc_test();
|
||
|
|
||
|
#endif
|