diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-08 14:39:39 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-08 14:39:39 +0000 |
commit | 4acf505acd8726e84028de766bfc40db19d92417 (patch) | |
tree | 5e0674102e2b2a2a53a1d208607bf02aa739ae27 /Source/charon/tests/ike_sa_test.h | |
parent | 7ba38761697d1d09656361b05edea0ceb87319bb (diff) | |
download | strongswan-4acf505acd8726e84028de766bfc40db19d92417.tar.bz2 strongswan-4acf505acd8726e84028de766bfc40db19d92417.tar.xz |
- basic test for ike_sa_t written (must be refined later)
Diffstat (limited to 'Source/charon/tests/ike_sa_test.h')
-rw-r--r-- | Source/charon/tests/ike_sa_test.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Source/charon/tests/ike_sa_test.h b/Source/charon/tests/ike_sa_test.h new file mode 100644 index 000000000..6bc02df2b --- /dev/null +++ b/Source/charon/tests/ike_sa_test.h @@ -0,0 +1,36 @@ +/** + * @file ike_sa_test.h + * + * @brief Tests to test the IKE_SA type ike_sa_t + * + */ + +/* + * Copyright (C) 2005 Jan Hutter, Martin Willi + * Hochschule fuer Technik Rapperswil + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ + +#ifndef IKE_SA_TEST_H_ +#define IKE_SA_TEST_H_ + +#include "../tester.h" + +/** + * @brief Test function used to test the ike_sa_t functionality + * + * + * @param tester associated tester_t-object + */ +void test_ike_sa(tester_t *tester); + +#endif /*IKE_SA_TEST_H_*/ |