コード例 #1
0
ファイル: ContextBase.cs プロジェクト: lulzzz/production
 public void SetUpContext()
 {
     this.ReportService = Substitute.For <IAssemblyFailsReportService>();
     this.Sut           = new AssemblyFailsReportsFacadeService(this.ReportService);
 }
コード例 #2
0
 public AssemblyFailsReportsFacadeService(IAssemblyFailsReportService reportService)
 {
     this.reportService = reportService;
 }