summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/inc_cfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip-apps/src/test-pjsua/inc_cfg.py')
-rw-r--r--pjsip-apps/src/test-pjsua/inc_cfg.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/pjsip-apps/src/test-pjsua/inc_cfg.py b/pjsip-apps/src/test-pjsua/inc_cfg.py
index 531fd1cb..d8519c3f 100644
--- a/pjsip-apps/src/test-pjsua/inc_cfg.py
+++ b/pjsip-apps/src/test-pjsua/inc_cfg.py
@@ -1,4 +1,4 @@
-# $Id:$
+# $Id$
import random
DEFAULT_ECHO = True
@@ -71,13 +71,19 @@ class TestParam:
process = []
# the function for test body
test_func = None
+ post_func = None
+ user_data = None
def __init__( self,
title, # Test title
inst_params, # InstanceParam's as list
- func=None):
+ func=None,
+ post_func=None,
+ user_data=None):
self.title = title
self.inst_params = inst_params
self.test_func = func
+ self.post_func = post_func
+ self.user_data = user_data