Наследование: ISpecificationRunListener, ITimeSpecifications
 public GenerateXmlReportListener(string xmlPath, TimingRunListener timer, bool showTimeInfo)
 {
   _xmlPath = xmlPath;
   _showTimeInfo = showTimeInfo;
   _timer = timer;
 }
 public GenerateJUnitReportListener(string resultPath, TimingRunListener timer, bool showTimeInfo)
 {
     _resultPath = resultPath;
     _showTimeInfo = showTimeInfo;
     _timer = timer;
 }