when(managerRepository.getJobFunctionManager()).thenReturn(jobFunctionManager);
UserType userType = new UserType();
userType.setIsAdmin(1);
when(login.getUserType()).thenReturn(userType);
ApplicationUser applicationUser = new ApplicationUser();
ProductArea productArea = productAreaManager
.findByName("Garasje villa");
applicationUser.setProductArea(productArea);
when(login.getApplicationUser()).thenReturn(applicationUser);
final Supplier supplier = new Supplier();
supplier.setSupplierId(47);