summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-06-15 19:43:43 +0000
committerBenny Prijono <bennylp@teluu.com>2008-06-15 19:43:43 +0000
commit52147c5315e8922dd74eccc96aef9814c507a5ce (patch)
tree66899eb44c84f61d03e423f7589a6f2a3b7b0240 /pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py
parent5e535ba2d77e5fa029901d60ecfabadac0f35d61 (diff)
Added presence pjsua unit tests
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2025 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py')
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py b/pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py
index 19a32322..0bf8cc15 100644
--- a/pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py
+++ b/pjsip-apps/src/test-pjsua/scripts-call/300_ice_1_1.py
@@ -1,10 +1,12 @@
-# $Id:$
+# $Id$
#
-import inc_cfg
+from inc_cfg import *
# ICE mismatch
-config = inc_cfg.CallConfig(
- title = "Callee=use ICE, caller=use ICE",
- callee_cfg = inc_cfg.Config(arg="--null-audio --use-ice"),
- caller_cfg = inc_cfg.Config(arg="--null-audio --use-ice")
+test_param = TestParam(
+ "Callee=use ICE, caller=use ICE",
+ [
+ InstanceParam("callee", "--null-audio --use-ice --max-calls=1"),
+ InstanceParam("caller", "--null-audio --use-ice --max-calls=1")
+ ]
)