diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
commit | 5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch) | |
tree | 4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/utils/tester.h | |
parent | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff) | |
download | strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2 strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz |
- typedefs changed
Diffstat (limited to 'Source/charon/utils/tester.h')
-rw-r--r-- | Source/charon/utils/tester.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/charon/utils/tester.h b/Source/charon/utils/tester.h index 0ecd8ba54..222b0d43a 100644 --- a/Source/charon/utils/tester.h +++ b/Source/charon/utils/tester.h @@ -29,22 +29,22 @@ -/** - * @brief Specifies a test - */ -typedef struct test_s test_t; +typedef struct test_t test_t; + +typedef struct tester_t tester_t; /** - * @brief A tester object to perform tests with + * @brief Specifies a test */ -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 |