Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ramueSVA committed Nov 13, 2024
1 parent 78ff354 commit fa53aee
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
import org.highmed.numportal.domain.repository.OrganizationRepository;
import org.highmed.numportal.domain.repository.ProjectRepository;
import org.highmed.numportal.domain.repository.UserDetailsRepository;
import org.highmed.numportal.service.ProjectService;
import org.highmed.numportal.service.util.ExportHeaderUtil;
import org.highmed.numportal.service.util.ExportUtil;

import java.time.LocalDate;
import java.util.List;
Expand All @@ -44,6 +47,7 @@
public class ProjectControllerIT extends IntegrationTest {

private static final String PROJECT_PATH = "/project";

@Autowired public MockMvc mockMvc;
UserDetails user1;
UserDetails user2;
Expand All @@ -52,6 +56,8 @@ public class ProjectControllerIT extends IntegrationTest {
.registerModule(new PageJacksonModule())
.registerModule(new SortJacksonModule())
.registerModule(new JavaTimeModule());
@Autowired private ExportUtil exportUtil;
@Autowired private ExportHeaderUtil exportHeaderUtil;
@Autowired private ProjectRepository projectRepository;
@Autowired private UserDetailsRepository userDetailsRepository;
@Autowired
Expand Down

0 comments on commit fa53aee

Please sign in to comment.