Merged pull request #58 from XTZGZoReX/master.
[mono.git] / eglib / test / test.h
index 3c6556d11d9084ce49aa2e1b2f78a6110677cb57..5c7275e00774f9435bb97c6db436b455937f027b 100644 (file)
 #ifndef _TEST_H
 #define _TEST_H
 
+#include <config.h>
 #include <stdarg.h>
+#include <stdio.h>
+#include <string.h>
 #include <glib.h>
 
+#ifdef _MSC_VER
+/* disable the following warnings 
+ * C4100: The formal parameter is not referenced in the body of the function. The unreferenced parameter is ignored. 
+ * C4127: conditional expression is constant (test macros produce a lot of these)
+*/
+#pragma warning(disable:4100 4127)
+#endif
+
+typedef gchar * RESULT;
+
 typedef struct _Test Test;
 typedef struct _Group Group;
 
@@ -48,9 +61,15 @@ struct _Group {
        LoadGroupHandler handler;
 };
 
-void run_test(Test *test);
-void run_group(Group *group);
-gchar *result(const gchar *format, ...);
+gboolean run_group(Group *group, gint iterations, gboolean quiet, 
+       gboolean time, gchar *tests);
+#undef FAILED
+RESULT FAILED(const gchar *format, ...);
+gdouble get_timestamp();
+gchar ** eg_strsplit (const gchar *string, const gchar *delimiter, gint max_tokens);
+void eg_strfreev (gchar **str_array);
+
+#define OK NULL
 
 #define DEFINE_TEST_GROUP_INIT(name, table) \
        Test * (name)() { return table; }
@@ -60,3 +79,4 @@ gchar *result(const gchar *format, ...);
 
 #endif /* _TEST_H */
 
+