| author | ali <ali@juiblex.co.uk> |
| Wed Oct 16 22:54:53 2013 +0100 (2013-10-16) | |
| changeset 172 | ba0dcf6e6f39 |
| 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 */