Example #1
0
        public AllureLifecycle StopStep(string uuid)
        {
            var step = Storage.Remove <StepResult>(uuid);

            step.stage = Stage.finished;
            step.stop  = ToUnixTimestamp();
            Storage.StopStep();
            return(this);
        }
        public virtual AllureLifecycle StopStep(string uuid)
        {
            var step = storage.Remove <StepResult>(uuid);

            step.stage = Stage.finished;
            step.stop  = DateTimeOffset.Now.ToUnixTimeMilliseconds();
            storage.StopStep();
            return(this);
        }