author | ali <ali@juiblex.co.uk> |
Mon Feb 20 10:10:48 2012 +0000 (2012-02-20) | |
changeset 37 | 037942e1bc4f |
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 */