예제 #1
0
        public AllureLifecycle UpdateTestCase(Action <TestResult> update)
        {
            var root = Storage.GetRootStep();

            if (root.EndsWith("-before"))
            {
                root = Storage.GetCurrentStep();
            }
            return(UpdateTestCase(root, update));
        }
예제 #2
0
 public virtual AllureLifecycle StartStep(string uuid, StepResult result)
 {
     StartStep(storage.GetCurrentStep(), uuid, result);
     return(this);
 }
예제 #3
0
 public virtual AllureLifecycle StartStep(string uuid, StepResult result, DateTimeOffset?startTime = null)
 {
     StartStep(storage.GetCurrentStep(), uuid, result, startTime);
     return(this);
 }