Esempio n. 1
0
def get_all_case():
    cases = []
    case_path = get_case_path()
    for path in case_path:
        hc = HandleCase(path)
        cases.extend(hc.get_cases())
    return cases
Esempio n. 2
0
def get_all_case():
    """
    获得所有测试用例集合
    :return:cases list
    """
    cases = []
    case_path = get_case_path()
    for path in case_path:
        hc = HandleCase(path)
        cases.extend(hc.get_cases())
    return cases