public void Setup() { manager = new Manager("Mihail", "*****@*****.**"); Location location = new Location("BT"); var office = new Office(manager, location); emp = office.CreateEmployee("Valentin", "*****@*****.**"); startingDate = new DateTime(2008, 04, 14); endDate = new DateTime(2008, 04, 30); meaningOfTransportation = "bmw"; AccommodationIsNeeded = true; BusinessTripRepository businessTripRepo = new BusinessTripRepository(); businessTripRepo.CleanUp(); EmailServiceLocator.SetEmailService(new EmailServiceTest()); BusinessTripFormatterServiceLocator.SetFormatter(new BusinessTripFormatterTest()); }
public void Setup() { manager = new Manager("Mihail", "*****@*****.**"); Location location = new Location("BT"); var office = new Office(manager, location); emp = office.CreateEmployee("Valentin", "*****@*****.**"); startingDate = new DateTime(2008, 04, 14); endDate = new DateTime(2008, 04, 30); phone = "112"; bankCard = "1502 4023 3453 3252"; meaningOfTransportation = "bmw"; AccommodationIsNeeded = true; BusinessTripRepository businessTripRepo = new BusinessTripRepository(); businessTripRepo.CleanUp(); EmailServiceLocator.SetEmailService(new GmailEmailService()); BusinessTripFormatterServiceLocator.SetFormatter(new BusinessTripFormatterTest()); }