31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import allure
|
|
import logging
|
|
|
|
from zhyy.library.BusinessKw.SZPurchase.index import PurchaseIndex
|
|
|
|
|
|
@allure.feature('供应商工作台首页')
|
|
class Test_supply_index(object):
|
|
# config = ReadConfig.ReadConfig() # 调用读取配置文件的方法类
|
|
test_case = PurchaseIndex()
|
|
|
|
def teardown_method(self):
|
|
logging.info("-----------------------------End-------------------------------")
|
|
|
|
@allure.story("验证供应商工作台待办任务与在办任务功能")
|
|
def test_check_supply_todo(self):
|
|
print("验证供应商工作台待办任务与在办任务功能--pass")
|
|
|
|
@allure.story("验证供应商工作台首页查询功能")
|
|
def test_check_supply_todo(self):
|
|
print("验证供应商工作台首页查询功能--pass")
|
|
|
|
@allure.story("验证供应商工作台首页上传功能")
|
|
def test_check_supply_todo(self):
|
|
print("验证供应商工作台首页上传功能--pass")
|
|
|
|
@allure.story("验证供应商工作台首页详情功能")
|
|
def test_check_supply_todo(self):
|
|
print("验证供应商工作台首页详情功能--pass") |