public GeneratorServiceForMtsTestSpec(EventHandler <string> eventHandler) : base()
 {
     Operation = Interfaces.OperationType.Test_Specification_From_Module_Test_State;
     SettingsProvider.SetOperationType(Operation);
     ExcelProvider  = new ExcelProviderForUnits();
     OutputProvider = new OutputProviderForUnits();
     ListenToProgressEvents(eventHandler);
 }
Example #2
0
 public GeneratorServiceForUnitResults(EventHandler <string> eventHandler) : base()
 {
     Operation = Interfaces.OperationType.Unit_Test_Results_From_Tessy;
     SettingsProvider.SetOperationType(Operation);
     ExcelProvider   = new ExcelProviderForUnits();
     ResultsProvider = new ResultsProviderForUnits();
     OutputProvider  = new OutputProviderForUnits();
     ListenToProgressEvents(eventHandler);
 }