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