summaryrefslogtreecommitdiff
path: root/test/tests.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-07-19 15:23:36 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2015-08-03 22:30:20 +0100
commit0b624c7fba92d74858746328888548d28b55f84a (patch)
treedef21828c16e8ce57d96c9cf07757c552f50a1de /test/tests.h
parent5496ba69d866145d2855e06c83c6441640e16231 (diff)
downloadlibnslayout-0b624c7fba92d74858746328888548d28b55f84a.tar.gz
libnslayout-0b624c7fba92d74858746328888548d28b55f84a.tar.bz2
Add basic tests for creating a layout object.
Diffstat (limited to 'test/tests.h')
-rw-r--r--test/tests.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/tests.h b/test/tests.h
new file mode 100644
index 0000000..4f7795f
--- /dev/null
+++ b/test/tests.h
@@ -0,0 +1,19 @@
+/*
+ * This file is part of LibNSLayout's tests
+ * Licensed under the ISC License, http://opensource.org/licenses/ISC
+ * Copyright 2015 Michael Drake <tlsa@netsurf-browser.org>
+ */
+
+#ifndef nslayout_tests_h_
+#define nslayout_tests_h_
+
+#include <signal.h>
+
+#include <check.h>
+
+#include <libnslayout/nslayout.h>
+
+extern void nslayout_assert_suite(SRunner *);
+extern void nslayout_basic_layout_suite(SRunner *);
+
+#endif