21 lines
412 B
Python
21 lines
412 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class TestPhp(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'desc': 'testPhpFunc',
|
|
'group': 'TestPhp',
|
|
'url': 'webapp/index.php?c=TestPhp&a=testPhpFunc',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
]
|
|
},
|
|
]
|