Ignore:
Timestamp:
Jun 18, 2008 9:04:14 PM (16 years ago)
Author:
nanang
Message:

Added new callback for module: post_func (called at the end of the test), added userdata param for modules, and added new module media_playrec with some scripts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/test-pjsua/inc_cfg.py

    r2025 r2029  
    1 # $Id:$ 
     1# $Id$ 
    22import random 
    33 
     
    7272        # the function for test body 
    7373        test_func = None 
     74        post_func = None 
     75        user_data = None 
    7476        def __init__(   self,  
    7577                        title,          # Test title 
    7678                        inst_params,    # InstanceParam's as list 
    77                         func=None): 
     79                        func=None, 
     80                        post_func=None, 
     81                        user_data=None): 
    7882                self.title = title 
    7983                self.inst_params = inst_params 
    8084                self.test_func = func 
     85                self.post_func = post_func 
     86                self.user_data = user_data 
    8187 
    8288 
Note: See TracChangeset for help on using the changeset viewer.