diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-29 07:32:33 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-29 07:32:33 +0000 |
commit | ed37dee61daf5bb272c04b79787da282abaa9447 (patch) | |
tree | f90aff722903c276546a9a03a93f2996a60da4e2 /Source/charon/testcases/parser_test.h | |
parent | d0cc48e5ece245c70708e9da79c785ad460a6501 (diff) | |
download | strongswan-ed37dee61daf5bb272c04b79787da282abaa9447.tar.bz2 strongswan-ed37dee61daf5bb272c04b79787da282abaa9447.tar.xz |
- testcases added to module testcases
Diffstat (limited to 'Source/charon/testcases/parser_test.h')
-rw-r--r-- | Source/charon/testcases/parser_test.h | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/Source/charon/testcases/parser_test.h b/Source/charon/testcases/parser_test.h index b5a10623e..48f3a1fd5 100644 --- a/Source/charon/testcases/parser_test.h +++ b/Source/charon/testcases/parser_test.h @@ -1,6 +1,7 @@ /** * @file parser_test.h * + * @brief Tests for the parser_t class. * */ @@ -24,15 +25,54 @@ #include <utils/tester.h> - +/** + * @brief Test function used to test the parser_t functionality when + * parsing a header payload. + * + * @param tester associated tester_t object + * + * @ingroup testcases + */ void test_parser_with_header_payload(tester_t *tester); +/** + * @brief Test function used to test the parser_t functionality when + * parsing a sa payload. + * + * @param tester associated tester_t object + * + * @ingroup testcases + */ void test_parser_with_sa_payload(tester_t *tester); +/** + * @brief Test function used to test the parser_t functionality when + * parsing a nonce payload. + * + * @param tester associated tester_t object + * + * @ingroup testcases + */ void test_parser_with_nonce_payload(tester_t *tester); +/** + * @brief Test function used to test the parser_t functionality when + * parsing a ke payload. + * + * @param tester associated tester_t object + * + * @ingroup testcases + */ void test_parser_with_ke_payload(tester_t *tester); +/** + * @brief Test function used to test the parser_t functionality when + * parsing a notify payload. + * + * @param tester associated tester_t object + * + * @ingroup testcases + */ void test_parser_with_notify_payload(tester_t *tester); #endif /*PARSER_TEST_H_*/ |