summaryrefslogtreecommitdiff
path: root/test/testutils/domtscondition.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/testutils/domtscondition.h')
-rw-r--r--test/testutils/domtscondition.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/testutils/domtscondition.h b/test/testutils/domtscondition.h
new file mode 100644
index 0000000..164977f
--- /dev/null
+++ b/test/testutils/domtscondition.h
@@ -0,0 +1,18 @@
+/*
+ * This file is part of libdom test suite.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
+ */
+
+#ifndef domtscondition_h_
+#define domtscondition_h_
+
+#include <stdbool.h>
+
+inline bool less(int excepted, int actual);
+inline bool less_or_equals(int excepted, int actual);
+inline bool greater(int excepted, int actual);
+inline bool greater_or_equals(int excepted, int actual);
+
+#endif