20 lines
653 B
C#
20 lines
653 B
C#
using Model;
|
|
using Model.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Service.Interface
|
|
{
|
|
/// <summary>
|
|
/// 测试项判断记录服务:运行时记录测试项范围内每一次 OKExpression 判断,导出测试报告时查询。
|
|
/// </summary>
|
|
public interface ITestCheckRecordService : IBaseService<TestCheckRecordEntity>
|
|
{
|
|
/// <summary>
|
|
/// 根据 TestRoundId 查询该次运行的所有测试项判断记录(按创建时间升序)
|
|
/// </summary>
|
|
Task<Result<List<TestCheckRecordEntity>>> GetByTestRoundIdAsync(Guid testRoundId);
|
|
}
|
|
}
|