Ejemplo n.º 1
0
 public static void BeforeFeature()
 {
     Reporting.CreateTestFeature(FeatureContext.Current.FeatureInfo.Title);
 }
Ejemplo n.º 2
0
 public static void BeforeScen()
 {
     Reporting.CreateScenarionNode(ScenarioContext.Current.ScenarioInfo.Title);
 }
Ejemplo n.º 3
0
 public static void EndTest()
 {
     Reporting.flush();
 }
Ejemplo n.º 4
0
 public static void reportSteps()
 {
     Reporting.StepPassFail(ScenarioStepContext.Current.StepInfo.StepDefinitionType.ToString(), ScenarioStepContext.Current.StepInfo.Text.ToString(), Reporter.GetStepPassed <string>("StepStatus"));
 }
Ejemplo n.º 5
0
 public static void startup()
 {
     Parameters.SetData("ConsoleOutput", string.Empty);
     Reporting.initialize_report("WINNDOWS", "CHROME", "Lores");
 }