mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
Added vcard tester (currently empty)
This commit is contained in:
parent
0a59544a44
commit
698c3e55cd
4 changed files with 35 additions and 0 deletions
|
|
@ -135,6 +135,7 @@ liblinphonetester_la_SOURCES = \
|
|||
tester.c \
|
||||
upnp_tester.c \
|
||||
video_tester.c \
|
||||
vcard_tester.c \
|
||||
common/bc_tester_utils.c
|
||||
|
||||
liblinphonetester_ladir = $(includedir)/linphone
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ extern test_suite_t video_test_suite;
|
|||
extern test_suite_t multicast_call_test_suite;
|
||||
extern test_suite_t multi_call_test_suite;
|
||||
extern test_suite_t proxy_config_test_suite;
|
||||
extern test_suite_t vcard_test_suite;
|
||||
#if HAVE_SIPP
|
||||
extern test_suite_t complex_sip_call_test_suite;
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -473,6 +473,7 @@ void liblinphone_tester_add_suites() {
|
|||
#if HAVE_SIPP
|
||||
bc_tester_add_suite(&complex_sip_call_test_suite);
|
||||
#endif
|
||||
bc_tester_add_suite(&vcard_test_suite);
|
||||
}
|
||||
|
||||
static int linphone_core_manager_get_max_audio_bw_base(const int array[],int array_size) {
|
||||
|
|
|
|||
32
tester/vcard_tester.c
Normal file
32
tester/vcard_tester.c
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
vcard_tester.c
|
||||
Copyright (C) 2015 Belledonne Communications SARL
|
||||
|
||||
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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
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.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
#include "linphonecore.h"
|
||||
#include "private.h"
|
||||
#include "liblinphone_tester.h"
|
||||
|
||||
test_t vcard_tests[] = {
|
||||
|
||||
};
|
||||
|
||||
test_suite_t vcard_test_suite = {
|
||||
"VCard", NULL, NULL,
|
||||
liblinphone_tester_before_each, liblinphone_tester_after_each,
|
||||
sizeof(vcard_tests) / sizeof(vcard_tests[0]), vcard_tests
|
||||
};
|
||||
Loading…
Add table
Reference in a new issue