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