测试报告导出修改
This commit is contained in:
@@ -26,6 +26,7 @@ namespace UIShare.UIViewModel
|
||||
NGGotoStepID = source.NGGotoStepID;
|
||||
Description = source.Description;
|
||||
IsUsed = source.IsUsed;
|
||||
IsTestItem = source.IsTestItem;
|
||||
|
||||
if (source.Method != null)
|
||||
{
|
||||
@@ -55,6 +56,15 @@ namespace UIShare.UIViewModel
|
||||
set => SetProperty(ref _isUsed, value);
|
||||
}
|
||||
|
||||
private bool _isTestItem = false;
|
||||
|
||||
/// <summary>是否测试项(仅子程序步骤可标记,运行时记录其范围内所有 OKExpression 判断)</summary>
|
||||
public bool IsTestItem
|
||||
{
|
||||
get => _isTestItem;
|
||||
set => SetProperty(ref _isTestItem, value);
|
||||
}
|
||||
|
||||
private int _index;
|
||||
|
||||
public int Index
|
||||
|
||||
Reference in New Issue
Block a user