Hi
In ranorex report in 'system information' part there is an item called 'duration'. How does one make it work when writing tests in VS2010? It always shows 0ms for me.
artur_gadomski wrote:In ranorex report in 'system information' part there is an item called 'duration'. How does one make it work when writing tests in VS2010? It always shows 0ms for me.
Ranorex.Controls.ProgressForm.Show();
TestReport.Setup(ReportLevel.Debug, pathToReport, true);
TestReport.BeginTestSuite("suite");
//my code including
TestReport.BeginTestModule("Uninstall");
//and
TestReport.EndTestModule();
TestReport.SaveReport();
Report.End();TestReport.Setup(ReportLevel.Info, filename, false);
using (new ActivityContext(new TestSuiteActivity("test suite report header")))
{
using (new ActivityContext(new TestCaseActivity(("test case name"))))
{
using (new ActivityContext(new TestModuleActivity("test module name")))
{
Report.Error("error message");
Report.Info("infor message");
}
}
}
TestReport.SaveReport();
Report.End();Users browsing this forum: No registered users and 0 guests