1
0
Fork 0
mirror of https://git.pwmt.org/pwmt/zathura.git synced 2025-01-27 05:19:09 +01:00
zathura/tests/test_session.c
2012-08-30 20:07:50 +02:00

25 lines
589 B
C

/* See LICENSE file for license and copyright information */
#include <check.h>
#include "../zathura.h"
START_TEST(test_create) {
zathura_t* zathura = zathura_create();
fail_unless(zathura != NULL, "Could not create session", NULL);
fail_unless(zathura_init(zathura) == true, "Could not initialize session", NULL);
zathura_free(zathura);
} END_TEST
Suite* suite_session()
{
TCase* tcase = NULL;
Suite* suite = suite_create("Session");
/* basic */
tcase = tcase_create("basic");
tcase_add_test(tcase, test_create);
suite_add_tcase(suite, tcase);
return suite;
}