示例#1
0
        public TestFixture(IIncidentApplicationRepository incidentApplicationRepository,
                           IDraftApplicationRepository draftApplicationRepository)
        {
            this._incidentApplicationRepository = incidentApplicationRepository;
            this._draftApplicationRepository    = draftApplicationRepository;

            this._draftApplicationFactory     = new DraftApplicationFactory();
            this._draftApplicationTestFixture = new DraftApplicationTestFixture();
        }
示例#2
0
 public TestFixture()
 {
     this._draftApplicationFactory     = new DraftApplicationFactory();
     this._draftApplicationTestFixture = new DraftApplicationTestFixture();
 }
示例#3
0
 public TestFixture(IDraftApplicationRepository draftApplicationRepository)
 {
     this._draftApplicationFactory     = new DraftApplicationFactory();
     this._draftApplicationTestFixture = new DraftApplicationTestFixture();
     this._draftApplicationRepository  = draftApplicationRepository;
 }