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

            step.stage = Stage.finished;
            step.stop  = ToUnixTimestamp();
            Storage.StopStep();
            return(this);
        }
Exemplo n.º 2
0
        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);
        }