summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/scripts-call/100_simplecall.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/100_simplecall.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/100_simplecall.py')
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-call/100_simplecall.py22
1 files changed, 12 insertions, 10 deletions
diff --git a/pjsip-apps/src/test-pjsua/scripts-call/100_simplecall.py b/pjsip-apps/src/test-pjsua/scripts-call/100_simplecall.py
index 1bfb9602..517483be 100644
--- a/pjsip-apps/src/test-pjsua/scripts-call/100_simplecall.py
+++ b/pjsip-apps/src/test-pjsua/scripts-call/100_simplecall.py
@@ -1,10 +1,12 @@
-# $Id:$
-#
-import inc_cfg
-
-# Simple call
-config = inc_cfg.CallConfig(
- title = "Basic call",
- callee_cfg = inc_cfg.Config(arg="--null-audio"),
- caller_cfg = inc_cfg.Config(arg="--null-audio")
- )
+# $Id:$
+#
+from inc_cfg import *
+
+# Simple call
+test_param = TestParam(
+ "Basic call",
+ [
+ InstanceParam("callee", "--null-audio --max-calls=1"),
+ InstanceParam("caller", "--null-audio --max-calls=1")
+ ]
+ )