示例#1
0
 public void SetUpContext()
 {
     this.ReportService = Substitute.For <IAssemblyFailsReportService>();
     this.Sut           = new AssemblyFailsReportsFacadeService(this.ReportService);
 }
示例#2
0
 public AssemblyFailsReportsFacadeService(IAssemblyFailsReportService reportService)
 {
     this.reportService = reportService;
 }