* add header file
authorWilfried Göesgens <willi@citadel.org>
Thu, 24 Jun 2010 21:28:09 +0000 (21:28 +0000)
committerWilfried Göesgens <willi@citadel.org>
Thu, 24 Jun 2010 21:28:09 +0000 (21:28 +0000)
* fix compiler warnings in the webcit tests

webcit/tests/webcit_test.h [new file with mode: 0644]

diff --git a/webcit/tests/webcit_test.h b/webcit/tests/webcit_test.h
new file mode 100644 (file)
index 0000000..adea2ed
--- /dev/null
@@ -0,0 +1,15 @@
+    
+#ifndef CUNIT_AUTOMATED_H_SEEN
+#define CUNIT_AUTOMATED_H_SEEN
+
+#include <CUnit/CUnit.h>
+#include <CUnit/Basic.h>
+#include <CUnit/TestDB.h>
+
+
+CU_EXPORT void         CU_automated_run_tests(void);
+CU_EXPORT CU_ErrorCode CU_list_tests_to_file(void);
+CU_EXPORT void         CU_set_output_filename(const char* szFilenameRoot);
+
+
+#endif  /*  CUNIT_AUTOMATED_H_SEEN  */