author | ali <ali@juiblex.co.uk> |
Tue Feb 07 08:15:17 2012 +0000 (2012-02-07) | |
changeset 20 | 411a8e696a47 |
permissions | -rw-r--r-- |
1 #ifndef TESTCASE_INPUT_H
2 #define TESTCASE_INPUT_H
4 #include <glib.h>
5 #include "testcase.h"
7 typedef struct {
8 char *name;
9 char *name_used;
10 char *contents;
11 } TestcaseInput;
13 gboolean testcase_input_create(Testcase *testcase,TestcaseInput *input,
14 GError **error);
15 gboolean testcase_input_remove(Testcase *testcase,TestcaseInput *input,
16 GError **error);
17 TestcaseInput *testcase_input_new(const char *name,const char *contents);
18 void testcase_input_free(TestcaseInput *input);
20 #endif /* TESTCASE_INPUT_H */