test_all-business_Strategy_detail.py
725 Bytes
from atdd.PcApiTest import PcApiTest
import unittest
# 企业业务积分策略详情接口
class AllBusinessStrategy(PcApiTest):
def setUp(self):
self.do_login(self.host, self.mobile, self.psw, self.domain)
# 全部参数
def test_Nonepalemter(self):
interfaceUrl = "/Integral/Apicp/Integral/BusinessDetail"
# result = self.PcApiTest(interfaceUrl)
data = {
"eibsId": "None",
"businessKey": "news_center",
"businessAct": "read"
}
result = self.PcApiTest(interfaceUrl, data)
print(self.host + "/" + self.domain + interfaceUrl)
print(result)
return result
if __name__ == '__main__':
unittest.main()