mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
feat(Variant): add getValueAsGeneric impl
This commit is contained in:
parent
1d02af0650
commit
4732e417d7
5 changed files with 53 additions and 1 deletions
|
|
@ -368,7 +368,12 @@ static inline float getValueAsString (const VariantPrivate &p, bool *soFarSoGood
|
|||
}
|
||||
|
||||
static inline void *getValueAsGeneric (const VariantPrivate &p, bool *soFarSoGood) {
|
||||
// TODO.
|
||||
if (p.type == Variant::Generic) {
|
||||
*soFarSoGood = true;
|
||||
return p.value.g;
|
||||
}
|
||||
|
||||
*soFarSoGood = false;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -199,6 +199,7 @@ set(SOURCE_FILES_CXX
|
|||
clonable-object-tester.cpp
|
||||
cpim-tester.cpp
|
||||
events-db-tester.cpp
|
||||
property-container-tester.cpp
|
||||
)
|
||||
|
||||
set(SOURCE_FILES_OBJC )
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ extern test_suite_t offeranswer_test_suite;
|
|||
extern test_suite_t player_test_suite;
|
||||
extern test_suite_t presence_server_test_suite;
|
||||
extern test_suite_t presence_test_suite;
|
||||
extern test_suite_t property_container_test_suite;
|
||||
extern test_suite_t proxy_config_test_suite;
|
||||
extern test_suite_t quality_reporting_test_suite;
|
||||
extern test_suite_t register_test_suite;
|
||||
|
|
|
|||
44
tester/property-container-tester.cpp
Normal file
44
tester/property-container-tester.cpp
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* property-container-tester.cpp
|
||||
* Copyright (C) 2017 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 "object/property-container.h"
|
||||
|
||||
#include "liblinphone_tester.h"
|
||||
|
||||
// =============================================================================
|
||||
|
||||
using namespace std;
|
||||
|
||||
using namespace LinphonePrivate;
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
static void set_integer_property () {
|
||||
PropertyContainer properties;
|
||||
properties.setProperty("integer", 42);
|
||||
BC_ASSERT_EQUAL(properties.getProperty("integer").getValue<int>(), 42, int, "%d");
|
||||
}
|
||||
|
||||
test_t property_container_tests[] = {
|
||||
TEST_NO_TAG("Set int property", set_integer_property)
|
||||
};
|
||||
|
||||
test_suite_t property_container_test_suite = {
|
||||
"PropertyContainer", NULL, NULL, liblinphone_tester_before_each, liblinphone_tester_after_each,
|
||||
sizeof(property_container_tests) / sizeof(property_container_tests[0]), property_container_tests
|
||||
};
|
||||
|
|
@ -573,6 +573,7 @@ void liblinphone_tester_add_suites() {
|
|||
bc_tester_add_suite(&cpim_test_suite);
|
||||
bc_tester_add_suite(&clonable_object_test_suite);
|
||||
bc_tester_add_suite(&events_db_test_suite);
|
||||
bc_tester_add_suite(&property_container_test_suite);
|
||||
#if defined(VIDEO_ENABLED) && defined(HAVE_GTK)
|
||||
bc_tester_add_suite(&video_test_suite);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue