| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System.Collections.Generic;
- namespace ET;
- public class TestCmdData
- {
- //如果登录账户名称存在的话,就一定是只执行一个机器人
- public string Account;
-
- //批次id--因为一个机器人进程,会执行N种测试策略的机器人,所以需要一个批次id来区分
- public int BatchId;
- //执行多少个机器人
- public int RobotCount;
- //是否异步
- public bool IsAsync;
-
- //间隔时间
- public long JgTime;
-
- //每次创建多少个
- public int JgCreateNum;
-
- //间隔多少秒执行测试用例
- public long TimerTime;
- /// <summary>
- /// 是否使用间隔
- /// </summary>
- public int IsUseStatus;
- //测试对象名称
- public List<TestCmdInfo> TestCmdInfos = new List<TestCmdInfo>();
- }
- public class TestCmdInfo
- {
- //执行顺序
- public int Order;
- //测试对象名称
- public string ObjName;
- }
|