Example #1
0
        public BaseStep()
        {
            Name          = string.Empty;
            Description   = string.Empty;
            TestItemGroup = TestItemGroups.Main;
            Children      = new List <ITestItem>();
            Variables     = new List <Variable>();
            Adaptor       = AdaptorFactory.CreateAdaptor(AdaptorTypes.DotnetAdaptor);

            BreakPoint    = false;
            EnableLogging = true;

            TestTimeout  = 30000;
            RunMode      = RunModes.Normal;
            LoopSettings = LoopSettingsFactory.CreateLoopSetting(LoopTypes.None);
        }
Example #2
0
        public NormalSequence()
        {
            Name          = string.Empty;
            Description   = string.Empty;
            TestItemGroup = TestItemGroups.Main;
            TestItemType  = TestItemTypes.Sequence;
            Children      = new List <ITestItem>();
            Variables     = new List <Variable>();

            BreakPoint    = false;
            EnableLogging = true;

            TestTimeout  = 60000;
            LoopSettings = LoopSettingsFactory.CreateLoopSetting(LoopTypes.None);
            RunMode      = RunModes.Normal;
        }