summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/py_pjsua/pjsua.py
blob: cae3480f91781f726cce3c5d6ecbedecfa1fcd70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# import module py_pjsua
import py_pjsua

print '''Testing py_pjsua.create : '''
status = py_pjsua.create()
print "py status " + `status`

# perror
print '''Testing error code 70006 : '''
py_pjsua.perror("py_pjsua","hello",70006)

# test py_pjsua.destroy
print '''Testing py_pjsua.destroy : '''
status = py_pjsua.destroy()
print "py status " + `status`

print '''End Of py_pjsua'''