Esempio n. 1
0
 def test_057_api_78dk_sht_store_findstorebasic(self):
     """
     查询门店基本信息
     :return:
     """
     res = json.loads(
         ShtAction.test_api_78dk_sht_store_findStoreBasic(store_uuid))
     Assertion.verity(res['code'], '10000')
Esempio n. 2
0
 def test_058_api_78dk_sht_store_findstorebasic_none(self):
     """
     查询门店基本信息,门店uuid为空
     :return:
     """
     res = json.loads(
         ShtAction.test_api_78dk_sht_store_findStoreBasic(storeuuid=''))
     Assertion.verity(res['msg'], '您提交的参数异常')
     Assertion.verity(res['code'], 'S0006')