public void WrappedStepTest() { AllureLifecycle.Instance.WrapInStep(() => { StepsExamples.Step1(); AllureLifecycle.Instance.WrapInStep(() => { Console.WriteLine("2"); AllureLifecycle.Instance.WrapInStep(() => { Console.WriteLine("Step in step 2"); }, "Step in Step 2"); }, "Step2"); StepsExamples.Step3(); }, "RootStep"); }
public void SimpleStepTest2() { StepsExamples.StepWithParams("0", "1"); StepsExamples.StepWithParams(1, 2); StepsExamples.StepWithParams(new[] { 1, 3, 5 }, "array"); }
public void SimpleStepTest() { StepsExamples.Step1(); AllureLifecycle.Instance.WrapInStep(() => { Console.WriteLine("Step 2"); }, "Step2"); StepsExamples.Step3(); }