コード例 #1
0
 public MutantsController(MutantsIdentificationService mutantsIdentificationService, IAnalysisLogService analysisLogService)
 {
     this.mutantsIdentificationService = mutantsIdentificationService;
     this.analysisLogService           = analysisLogService;
 }
コード例 #2
0
 public void Setup()
 {
     mock = new Mock <IAnalysisLogService>();
     mutantsIdentificationService = new MutantsIdentificationService(mock.Object);
     actualDateTime = DateTime.Now;
 }