2007-10-19 Marek Habersack <mhabersack@novell.com>
[mono.git] / eglib / test / test.h
index cfe81ca82595d0b6818c7588b094058fa7f3034e..d304e7e1d0a35ef753838e3efea1f61c6f88df3b 100644 (file)
 #ifndef _TEST_H
 #define _TEST_H
 
+#include <config.h>
 #include <stdarg.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;
@@ -50,9 +59,13 @@ struct _Group {
        LoadGroupHandler handler;
 };
 
-gboolean run_test(Test *test, gboolean quiet);
-void run_group(Group *group, gint *total, gint *passed, gboolean quiet);
+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
 
@@ -64,3 +77,4 @@ RESULT FAILED(const gchar *format, ...);
 
 #endif /* _TEST_H */
 
+