- typedefs changed

This commit is contained in:
Martin Willi
2005-11-24 11:30:19 +00:00
parent 95c61cb956
commit 5796aa164d
61 changed files with 303 additions and 242 deletions
+9 -9
View File
@@ -29,22 +29,22 @@
typedef struct test_t test_t;
typedef struct tester_t tester_t;
/**
* @brief Specifies a test
*/
typedef struct test_s test_t;
/**
* @brief A tester object to perform tests with
*/
typedef struct tester_s tester_t;
struct test_s{
struct test_t {
void (*test_function) (tester_t * tester);
char * test_name;
};
struct tester_s {
/**
* @brief A tester object to perform tests with
*/
struct tester_t {
/**
* @brief Tests all testcases in array tests with specific tester object