mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-26 23:56:02 +01:00
Fix build of tests
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
ded318fc29
commit
9bfc58216e
1 changed files with 4 additions and 3 deletions
|
@ -5,9 +5,10 @@
|
|||
#include "document.h"
|
||||
|
||||
START_TEST(test_open) {
|
||||
fail_unless(zathura_document_open(NULL, NULL, NULL, NULL) == NULL, "Could create document", NULL);
|
||||
fail_unless(zathura_document_open(NULL, "fl", NULL, NULL) == NULL, "Could create document", NULL);
|
||||
fail_unless(zathura_document_open(NULL, "fl", "pw", NULL) == NULL, "Could create document", NULL);
|
||||
fail_unless(zathura_document_open(NULL, NULL, NULL, NULL, NULL) == NULL, "Could create document", NULL);
|
||||
fail_unless(zathura_document_open(NULL, "fl", NULL, NULL, NULL) == NULL, "Could create document", NULL);
|
||||
fail_unless(zathura_document_open(NULL, "fl", "ur", NULL, NULL) == NULL, "Could create document", NULL);
|
||||
fail_unless(zathura_document_open(NULL, "fl", NULL, "pw", NULL) == NULL, "Could create document", NULL);
|
||||
} END_TEST
|
||||
|
||||
Suite* suite_document()
|
||||
|
|
Loading…
Reference in a new issue