コード例 #1
0
 public SkillsFrameworkDataImportControllerTests()
 {
     fakeImportSkillsFrameworkDataService = A.Fake <IImportSkillsFrameworkDataService>(ops => ops.Strict());
     fakeReportAuditRepository            = A.Fake <IReportAuditRepository>(ops => ops.Strict());
     fakeWebAppContext     = A.Fake <IWebAppContext>(ops => ops.Strict());
     fakeApplicationLogger = A.Fake <IApplicationLogger>(ops => ops.Strict());
     SetupCalls();
 }
コード例 #2
0
 public SkillsFrameworkDataImportController(IApplicationLogger applicationLogger, IImportSkillsFrameworkDataService importSkillsFrameworkDataService, IReportAuditRepository reportAuditRepository, IWebAppContext webAppContext) : base(applicationLogger)
 {
     this.importSkillsFrameworkDataService = importSkillsFrameworkDataService;
     this.reportAuditRepository            = reportAuditRepository;
     this.webAppContext = webAppContext;
 }