2012-10-19 20:16:36 +04:00
|
|
|
#include "torture.h"
|
2008-04-16 12:32:33 +04:00
|
|
|
|
2008-04-16 12:54:53 +04:00
|
|
|
#include "vio/csync_vio_file_stat.h"
|
2008-04-16 12:32:33 +04:00
|
|
|
|
2012-10-19 20:16:36 +04:00
|
|
|
static void check_csync_vio_file_stat_new(void **state)
|
2008-04-16 12:32:33 +04:00
|
|
|
{
|
2012-10-19 20:16:36 +04:00
|
|
|
csync_vio_file_stat_t *tstat;
|
2008-04-16 12:32:33 +04:00
|
|
|
|
2012-10-19 20:16:36 +04:00
|
|
|
(void) state; /* unused */
|
2008-04-16 12:32:33 +04:00
|
|
|
|
2012-10-19 20:16:36 +04:00
|
|
|
tstat = csync_vio_file_stat_new();
|
|
|
|
assert_non_null(tstat);
|
2008-04-16 12:32:33 +04:00
|
|
|
|
2012-10-19 20:16:36 +04:00
|
|
|
csync_vio_file_stat_destroy(tstat);
|
2008-04-16 12:32:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-19 20:16:36 +04:00
|
|
|
int torture_run_tests(void)
|
|
|
|
{
|
|
|
|
const UnitTest tests[] = {
|
|
|
|
unit_test(check_csync_vio_file_stat_new),
|
|
|
|
};
|
2008-04-16 12:32:33 +04:00
|
|
|
|
2012-10-19 20:16:36 +04:00
|
|
|
return run_tests(tests);
|
2008-04-16 12:32:33 +04:00
|
|
|
}
|
|
|
|
|