Exemplo n.º 1
0
        public TestFixture(IIncidentApplicationRepository incidentApplicationRepository,
                           IDraftApplicationRepository draftApplicationRepository)
        {
            this._incidentApplicationRepository = incidentApplicationRepository;
            this._draftApplicationRepository    = draftApplicationRepository;

            this._draftApplicationFactory     = new DraftApplicationFactory();
            this._draftApplicationTestFixture = new DraftApplicationTestFixture();
        }
Exemplo n.º 2
0
 public TestFixture()
 {
     this._draftApplicationFactory     = new DraftApplicationFactory();
     this._draftApplicationTestFixture = new DraftApplicationTestFixture();
 }
Exemplo n.º 3
0
 public TestFixture(IDraftApplicationRepository draftApplicationRepository)
 {
     this._draftApplicationFactory     = new DraftApplicationFactory();
     this._draftApplicationTestFixture = new DraftApplicationTestFixture();
     this._draftApplicationRepository  = draftApplicationRepository;
 }