- Tests more documented

This commit is contained in:
Jan Hutter
2005-11-03 18:22:07 +00:00
parent 5ea7551195
commit ef23cd28c1
8 changed files with 76 additions and 37 deletions
+10 -2
View File
@@ -24,13 +24,21 @@
#define LINKED_LIST_TEST_H_
/**
* @brief Tes function for the type linked_list_t
* @brief Test function for the type linked_list_t
*
* Performs different kinds of assertions to check the functionality
* of the linked_list_t in a Single-Threaded environment.
*
* @warning To be usable in multi-threaded software
* this list has to get protected with locks.
*
* @param tester tester object
*/
void test_linked_list(tester_t *tester);
/**
* Test for linked_list_t
*/
test_t linked_list_test = {test_linked_list,"Linked List"};
#endif /*LINKED_LIST_TEST_H_*/