コード例 #1
0
 public void SetUpContext()
 {
     this.DeliveryPerformanceReportService = Substitute.For <IDeliveryPerformanceReportService>();
     this.Sut = new DeliveryPerfResultFacadeService(this.DeliveryPerformanceReportService);
 }
コード例 #2
0
 public DeliveryPerfResultFacadeService(IDeliveryPerformanceReportService deliveryPerformanceReportService)
 {
     this.deliveryPerformanceReportService = deliveryPerformanceReportService;
 }