summaryrefslogtreecommitdiff
path: root/t/unit-tests/clar/test/clar_test.h
diff options
context:
space:
mode:
Diffstat (limited to 't/unit-tests/clar/test/clar_test.h')
-rw-r--r--t/unit-tests/clar/test/clar_test.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/unit-tests/clar/test/clar_test.h b/t/unit-tests/clar/test/clar_test.h
new file mode 100644
index 0000000000..0fcaa639aa
--- /dev/null
+++ b/t/unit-tests/clar/test/clar_test.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) Vicent Marti. All rights reserved.
+ *
+ * This file is part of clar, distributed under the ISC license.
+ * For full terms see the included COPYING file.
+ */
+#ifndef __CLAR_TEST__
+#define __CLAR_TEST__
+
+/* Import the standard clar helper functions */
+#include "clar.h"
+
+/* Your custom shared includes / defines here */
+extern int global_test_counter;
+
+#endif